14 lines
194 B
PHP
14 lines
194 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
class PlayerWasDeleted extends Event
|
|
{
|
|
public $playerName;
|
|
|
|
public function __construct($playerName)
|
|
{
|
|
$this->playerName = $playerName;
|
|
}
|
|
}
|