mirror of
https://github.com/pterodactyl/panel.git
synced 2026-02-08 18:41:32 -06:00
19 lines
316 B
PHP
19 lines
316 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Events\Auth;
|
|
|
|
use Pterodactyl\Events\Event;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class FailedCaptcha extends Event
|
|
{
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*/
|
|
public function __construct(public string $ip, public string $domain)
|
|
{
|
|
}
|
|
}
|