remove unused code

This commit is contained in:
Pig Fang 2020-01-05 11:30:58 +08:00
parent 1eba808974
commit c3a0018219

View File

@ -1,31 +0,0 @@
<?php
namespace App\Events;
use App\Models\Player;
class GetPlayerJson extends Event
{
public $player;
/**
* CSL_API = 0
* USM_API = 1.
*
* @var int
*/
public $apiType;
/**
* Create a new event instance.
*
* @param int $apiType
*
* @return void
*/
public function __construct(Player $player, $apiType)
{
$this->player = $player;
$this->apiType = $apiType;
}
}