blessing-skin-server/app/Events/UserTryToLogin.php
2019-12-14 11:10:37 +08:00

25 lines
491 B
PHP

<?php
namespace App\Events;
class UserTryToLogin extends Event
{
public $identification;
public $authType;
/**
* Create a new event instance.
*
* @param string $identification email or username of the user
* @param string $authType "email" or "username"
*
* @return void
*/
public function __construct($identification, $authType)
{
$this->identification = $identification;
$this->authType = $authType;
}
}