mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-19 23:03:45 +02:00
Apply fixes from StyleCI (#364)
This commit is contained in:
@@ -29,31 +29,31 @@ use Illuminate\Queue\SerializesModels;
|
||||
class FailedCaptcha
|
||||
{
|
||||
use SerializesModels;
|
||||
|
||||
|
||||
/**
|
||||
* The IP that the request originated from.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
* The IP that the request originated from.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $ip;
|
||||
|
||||
/**
|
||||
* The domain that was used to try to verify the request with recaptcha api.
|
||||
*
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $domain;
|
||||
|
||||
|
||||
/**
|
||||
* Create a new event instance.
|
||||
*
|
||||
* @param string $ip
|
||||
* @param string $domain
|
||||
* @return void
|
||||
*/
|
||||
* Create a new event instance.
|
||||
*
|
||||
* @param string $ip
|
||||
* @param string $domain
|
||||
* @return void
|
||||
*/
|
||||
public function __construct($ip, $domain)
|
||||
{
|
||||
$this->ip = $ip;
|
||||
$this->domain = $domain;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user