Remove useless docs noticed by php-cs-fixer 3.5

This commit is contained in:
Dylan K. Taylor 2022-01-18 00:24:12 +00:00
parent eaaf00ca2b
commit 858024afb7
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D
3 changed files with 0 additions and 8 deletions

View File

@ -103,8 +103,6 @@ class BlockBreakEvent extends BlockEvent implements Cancellable{
/** /**
* Variadic hack for easy array member type enforcement. * Variadic hack for easy array member type enforcement.
*
* @param Item ...$drops
*/ */
public function setDropsVariadic(Item ...$drops) : void{ public function setDropsVariadic(Item ...$drops) : void{
$this->blockDrops = $drops; $this->blockDrops = $drops;

View File

@ -52,8 +52,6 @@ interface Inventory{
* *
* Returns the Items that did not fit. * Returns the Items that did not fit.
* *
* @param Item ...$slots
*
* @return Item[] * @return Item[]
*/ */
public function addItem(Item ...$slots) : array; public function addItem(Item ...$slots) : array;
@ -72,8 +70,6 @@ interface Inventory{
* Removes the given Item from the inventory. * Removes the given Item from the inventory.
* It will return the Items that couldn't be removed. * It will return the Items that couldn't be removed.
* *
* @param Item ...$slots
*
* @return Item[] * @return Item[]
*/ */
public function removeItem(Item ...$slots) : array; public function removeItem(Item ...$slots) : array;

View File

@ -755,8 +755,6 @@ class World implements ChunkManager{
/** /**
* @internal * @internal
*
* @param Player ...$targets If empty, will send to all players in the world.
*/ */
public function sendTime(Player ...$targets) : void{ public function sendTime(Player ...$targets) : void{
if(count($targets) === 0){ if(count($targets) === 0){