From 4b65e1cbe1409d6d15f6cec0f63cc780e73ef085 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sun, 1 Dec 2019 21:01:57 +0000 Subject: [PATCH] Command: fix type doc comment for commandMap field --- src/pocketmine/command/Command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pocketmine/command/Command.php b/src/pocketmine/command/Command.php index 2f47e2029..33b8a645b 100644 --- a/src/pocketmine/command/Command.php +++ b/src/pocketmine/command/Command.php @@ -55,7 +55,7 @@ abstract class Command{ */ private $activeAliases = []; - /** @var CommandMap */ + /** @var CommandMap|null */ private $commandMap = null; /** @var string */