mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-20 16:00:20 +00:00
Modernize private property declarations in src/resourcepacks
This commit is contained in:
parent
c60311617d
commit
9e59819f06
@ -40,18 +40,14 @@ use function strtolower;
|
||||
use const DIRECTORY_SEPARATOR;
|
||||
|
||||
class ResourcePackManager{
|
||||
|
||||
/** @var string */
|
||||
private $path;
|
||||
|
||||
/** @var bool */
|
||||
private $serverForceResources = false;
|
||||
private string $path;
|
||||
private bool $serverForceResources = false;
|
||||
|
||||
/** @var ResourcePack[] */
|
||||
private $resourcePacks = [];
|
||||
private array $resourcePacks = [];
|
||||
|
||||
/** @var ResourcePack[] */
|
||||
private $uuidList = [];
|
||||
private array $uuidList = [];
|
||||
|
||||
/**
|
||||
* @param string $path Path to resource-packs directory.
|
||||
|
Loading…
x
Reference in New Issue
Block a user