blessing-skin-server/app/Events/PlayerWasAdded.php

21 lines
286 B
PHP
Raw Normal View History

<?php
namespace App\Events;
2016-10-16 18:16:15 +08:00
use App\Models\Player;
class PlayerWasAdded extends Event
{
public $player;
/**
* Create a new event instance.
*
* @return void
*/
2016-10-16 18:16:15 +08:00
public function __construct(Player $player)
{
$this->player = $player;
}
}