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