BaseInventory: fixed doc comment for slots field

This commit is contained in:
Dylan K. Taylor 2018-03-26 09:22:38 +01:00
parent 0dd8fd2651
commit cf3638ad8d

View File

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