blessing-skin-server/app/Events/PlayerWillBeDeleted.php
2016-11-07 22:16:27 +08:00

22 lines
292 B
PHP

<?php
namespace App\Events;
use App\Models\Player;
class PlayerWillBeDeleted extends Event
{
public $player;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(Player $player)
{
$this->player = $player;
}
}