blessing-skin-server/app/Events/CheckPlayerExists.php
2016-11-18 23:06:15 +08:00

24 lines
346 B
PHP

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