From bc76b1cafe2cced55759dcdc231da192dc891117 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Wed, 4 Dec 2019 10:14:15 +0000 Subject: [PATCH] Server: remove several redundant @var annotations (copy pasta) these are all useless because it is implied by the parameter type anyway. --- src/pocketmine/Server.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/pocketmine/Server.php b/src/pocketmine/Server.php index 6a1a2c417d..be10c0d900 100644 --- a/src/pocketmine/Server.php +++ b/src/pocketmine/Server.php @@ -1798,7 +1798,6 @@ class Server{ return $this->broadcast($message, self::BROADCAST_CHANNEL_USERS); } - /** @var CommandSender[] $recipients */ foreach($recipients as $recipient){ $recipient->sendMessage($message); } @@ -1823,7 +1822,6 @@ class Server{ } } - /** @var Player[] $recipients */ foreach($recipients as $recipient){ $recipient->sendTip($tip); } @@ -1849,7 +1847,6 @@ class Server{ } } - /** @var Player[] $recipients */ foreach($recipients as $recipient){ $recipient->sendPopup($popup); } @@ -1879,7 +1876,6 @@ class Server{ } } - /** @var Player[] $recipients */ foreach($recipients as $recipient){ $recipient->addTitle($title, $subtitle, $fadeIn, $stay, $fadeOut); }