blessing-skin-server/app/Events/UserTryToLogin.php
2016-10-30 11:57:26 +08:00

27 lines
428 B
PHP

<?php
namespace App\Events;
use Illuminate\Queue\SerializesModels;
class UserTryToLogin extends Event
{
use SerializesModels;
public $identification;
public $authType;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct($identification, $auth_type)
{
$this->identification = $identification;
$this->authType = $auth_type;
}
}