mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-07 02:08:21 +00:00
Drop a bunch of invalid null defaults
phpstan doesn't report these out of the box, for reasons I'm not clear on. It's also not clear if having null defaults has any effect on nullability behaviour, so they are best removed. In addition, these would be problematic on 7.4.
This commit is contained in:
@ -265,7 +265,7 @@ class Level implements ChunkManager, Metadatable{
|
||||
/** @var bool */
|
||||
private $clearChunksOnTick;
|
||||
/** @var \SplFixedArray<Block> */
|
||||
private $randomTickBlocks = null;
|
||||
private $randomTickBlocks;
|
||||
|
||||
/** @var LevelTimings */
|
||||
public $timings;
|
||||
|
Reference in New Issue
Block a user