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