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

20 lines
307 B
PHP
Raw Normal View History

2016-11-07 22:16:27 +08:00
<?php
namespace App\Events;
class PlayerWasDeleted extends Event
{
public $playerName;
/**
* Create a new event instance.
*
2018-02-16 16:25:35 +08:00
* @param string $playerName
2016-11-07 22:16:27 +08:00
* @return void
*/
2018-02-16 16:25:35 +08:00
public function __construct($playerName)
2016-11-07 22:16:27 +08:00
{
2018-02-16 16:25:35 +08:00
$this->playerName = $playerName;
2016-11-07 22:16:27 +08:00
}
}