mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2025-04-04 22:23:07 +08:00
17 lines
279 B
PHP
17 lines
279 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace App\Events;
|
||
|
|
||
|
class UserTryToLogin extends Event
|
||
|
{
|
||
|
public $identification;
|
||
|
|
||
|
public $authType;
|
||
|
|
||
|
public function __construct($identification, $authType)
|
||
|
{
|
||
|
$this->identification = $identification;
|
||
|
$this->authType = $authType;
|
||
|
}
|
||
|
}
|