AttributeMap: add phpstan generic parameters for ArrayAccess

This commit is contained in:
Dylan K. Taylor 2020-01-11 23:03:21 +00:00
parent 5816ff85ba
commit 5bded9cff8

View File

@ -25,6 +25,9 @@ namespace pocketmine\entity;
use function array_filter;
/**
* @phpstan-implements \ArrayAccess<int, float>
*/
class AttributeMap implements \ArrayAccess{
/** @var Attribute[] */
private $attributes = [];