added SplFixedArray generics for phpstan 0.12.9

This commit is contained in:
Dylan K. Taylor
2020-02-05 11:57:37 +00:00
parent 32d6ea0fba
commit 3f7e7352fb
10 changed files with 49 additions and 9 deletions

View File

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