From 51f96b195eeb85ecbfca6357517c4685a84dd62a Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sat, 11 May 2019 18:00:56 +0100 Subject: [PATCH] ItemFactory: fix wrong typehint --- src/pocketmine/item/ItemFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pocketmine/item/ItemFactory.php b/src/pocketmine/item/ItemFactory.php index 24017c86f..119682ffe 100644 --- a/src/pocketmine/item/ItemFactory.php +++ b/src/pocketmine/item/ItemFactory.php @@ -45,7 +45,7 @@ use function trim; */ class ItemFactory{ - /** @var \SplFixedArray */ + /** @var Item[] */ private static $list = []; /** @var Item|null */