remove phpstan docs

This commit is contained in:
ShockedPlot7560 2024-11-18 14:51:53 +01:00
parent c77a72f15a
commit 947c8a0621
No known key found for this signature in database
GPG Key ID: 9A66EBFAA7CD3601

View File

@ -26,7 +26,6 @@ namespace pocketmine\block\anvil;
use pocketmine\item\Item; use pocketmine\item\Item;
abstract class AnvilAction{ abstract class AnvilAction{
/** @phpstan-var int<0, max> */
protected int $xpCost = 0; protected int $xpCost = 0;
final public function __construct( final public function __construct(
@ -38,8 +37,6 @@ abstract class AnvilAction{
/** /**
* Returns the XP cost requested for this action. * Returns the XP cost requested for this action.
* This XP cost will be summed up to the total XP cost of the anvil operation. * 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{ final public function getXpCost() : int{
return $this->xpCost; return $this->xpCost;