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

22 lines
322 B
PHP
Raw Normal View History

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