diff --git a/src/event/block/BlockBreakEvent.php b/src/event/block/BlockBreakEvent.php index 2540ecec4..e11a71ebc 100644 --- a/src/event/block/BlockBreakEvent.php +++ b/src/event/block/BlockBreakEvent.php @@ -103,8 +103,6 @@ class BlockBreakEvent extends BlockEvent implements Cancellable{ /** * Variadic hack for easy array member type enforcement. - * - * @param Item ...$drops */ public function setDropsVariadic(Item ...$drops) : void{ $this->blockDrops = $drops; diff --git a/src/inventory/Inventory.php b/src/inventory/Inventory.php index b1fad3904..8eef250b1 100644 --- a/src/inventory/Inventory.php +++ b/src/inventory/Inventory.php @@ -52,8 +52,6 @@ interface Inventory{ * * Returns the Items that did not fit. * - * @param Item ...$slots - * * @return Item[] */ public function addItem(Item ...$slots) : array; @@ -72,8 +70,6 @@ interface Inventory{ * Removes the given Item from the inventory. * It will return the Items that couldn't be removed. * - * @param Item ...$slots - * * @return Item[] */ public function removeItem(Item ...$slots) : array; diff --git a/src/world/World.php b/src/world/World.php index be5e7c426..817b45730 100644 --- a/src/world/World.php +++ b/src/world/World.php @@ -755,8 +755,6 @@ class World implements ChunkManager{ /** * @internal - * - * @param Player ...$targets If empty, will send to all players in the world. */ public function sendTime(Player ...$targets) : void{ if(count($targets) === 0){