mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 01:46:04 +00:00
Modernize private property declarations in src/network
This commit is contained in:
@ -42,11 +42,11 @@ final class RuntimeBlockMapping{
|
||||
use SingletonTrait;
|
||||
|
||||
/** @var int[] */
|
||||
private $legacyToRuntimeMap = [];
|
||||
private array $legacyToRuntimeMap = [];
|
||||
/** @var int[] */
|
||||
private $runtimeToLegacyMap = [];
|
||||
private array $runtimeToLegacyMap = [];
|
||||
/** @var CompoundTag[] */
|
||||
private $bedrockKnownStates;
|
||||
private array $bedrockKnownStates;
|
||||
|
||||
private static function make() : self{
|
||||
return new self(
|
||||
|
Reference in New Issue
Block a user