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 */ /** @var string */
protected $title; protected $title;
/** @var \SplFixedArray|Item[] */ /** @var \SplFixedArray|Item[] */
protected $slots = []; protected $slots;
/** @var Player[] */ /** @var Player[] */
protected $viewers = []; protected $viewers = [];
/** @var InventoryEventProcessor */ /** @var InventoryEventProcessor */