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