Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Events/Auth/FailedPasswordReset.php
10266 views
1
<?php
2
3
namespace Pterodactyl\Events\Auth;
4
5
use Pterodactyl\Events\Event;
6
use Illuminate\Queue\SerializesModels;
7
8
class FailedPasswordReset extends Event
9
{
10
use SerializesModels;
11
12
/**
13
* Create a new event instance.
14
*/
15
public function __construct(public string $ip, public string $email)
16
{
17
}
18
}
19
20