Chunk: Remove unnecessary default values

these are assigned in the constructor anyway.
This commit is contained in:
Dylan K. Taylor 2017-11-27 17:49:08 +00:00
parent 49301b0d74
commit c564655f9b

View File

@ -54,10 +54,10 @@ class Chunk{
protected $height = Chunk::MAX_SUBCHUNKS;
/** @var \SplFixedArray|SubChunkInterface[] */
protected $subChunks = [];
protected $subChunks;
/** @var EmptySubChunk */
protected $emptySubChunk = null;
protected $emptySubChunk;
/** @var Tile[] */
protected $tiles = [];