16 lines
213 B
PHP
16 lines
213 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Player;
|
|
|
|
class PlayerProfileUpdated extends Event
|
|
{
|
|
public $player;
|
|
|
|
public function __construct(Player $player)
|
|
{
|
|
$this->player = $player;
|
|
}
|
|
}
|