BaseInventory: fixed incorrect & redundant default value for slots field

This commit is contained in:
Dylan K. Taylor 2019-12-01 19:45:16 +00:00
parent ea413d0882
commit 1a1e3ff63b

View File

@ -47,7 +47,7 @@ abstract class BaseInventory implements Inventory{
/** @var string */
protected $title;
/** @var \SplFixedArray|Item[] */
protected $slots = [];
protected $slots;
/** @var Player[] */
protected $viewers = [];
/** @var InventoryEventProcessor */