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