From 947c8a062159cee0516861a127246824cbfb1c8b Mon Sep 17 00:00:00 2001 From: ShockedPlot7560 Date: Mon, 18 Nov 2024 14:51:53 +0100 Subject: [PATCH] remove phpstan docs --- src/block/anvil/AnvilAction.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/block/anvil/AnvilAction.php b/src/block/anvil/AnvilAction.php index 459763c29..b2f038b9b 100644 --- a/src/block/anvil/AnvilAction.php +++ b/src/block/anvil/AnvilAction.php @@ -26,7 +26,6 @@ namespace pocketmine\block\anvil; use pocketmine\item\Item; abstract class AnvilAction{ - /** @phpstan-var int<0, max> */ protected int $xpCost = 0; final public function __construct( @@ -38,8 +37,6 @@ abstract class AnvilAction{ /** * Returns the XP cost requested for this action. * This XP cost will be summed up to the total XP cost of the anvil operation. - * - * @phpstan-return int<0, max> */ final public function getXpCost() : int{ return $this->xpCost;