20 lines
277 B
PHP
20 lines
277 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Events;
|
||
|
|
||
|
class PlayerWillBeAdded extends Event
|
||
|
{
|
||
|
public $playerName;
|
||
|
|
||
|
/**
|
||
|
* Create a new event instance.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function __construct($player_name)
|
||
|
{
|
||
|
$this->playerName = $player_name;
|
||
|
}
|
||
|
|
||
|
}
|