blessing-skin-server/app/Events/UserTryToLogin.php
2016-10-17 17:51:51 +08:00

27 lines
430 B
PHP

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