2017-03-30 21:44:20 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Events\Auth;
|
|
|
|
|
2022-10-14 16:59:20 +00:00
|
|
|
use Pterodactyl\Events\Event;
|
2017-03-30 21:44:20 +00:00
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
2022-10-14 16:59:20 +00:00
|
|
|
class FailedPasswordReset extends Event
|
2017-03-30 21:44:20 +00:00
|
|
|
{
|
|
|
|
use SerializesModels;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function __construct(public string $ip, public string $email)
|
2017-03-30 21:44:20 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|