ItemFactory: add PhpDoc for getAllRegistered()

This commit is contained in:
Dylan K. Taylor 2019-07-05 13:46:06 +01:00
parent 453c5a329d
commit b021cc2138

View File

@ -486,6 +486,9 @@ class ItemFactory{
return (($id & 0xffff) << 16) | ($variant & 0xffff);
}
/**
* @return Item[]
*/
public static function getAllRegistered() : array{
return self::$list;
}