mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-10 20:08:01 +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;
|
use const DIRECTORY_SEPARATOR;
|
||||||
|
|
||||||
class ResourcePackManager{
|
class ResourcePackManager{
|
||||||
|
private string $path;
|
||||||
/** @var string */
|
private bool $serverForceResources = false;
|
||||||
private $path;
|
|
||||||
|
|
||||||
/** @var bool */
|
|
||||||
private $serverForceResources = false;
|
|
||||||
|
|
||||||
/** @var ResourcePack[] */
|
/** @var ResourcePack[] */
|
||||||
private $resourcePacks = [];
|
private array $resourcePacks = [];
|
||||||
|
|
||||||
/** @var ResourcePack[] */
|
/** @var ResourcePack[] */
|
||||||
private $uuidList = [];
|
private array $uuidList = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $path Path to resource-packs directory.
|
* @param string $path Path to resource-packs directory.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user