Mass removal of useless @param/@return PHPDoc annotations, pass 1

This commit is contained in:
Dylan K. Taylor
2020-01-21 15:10:18 +00:00
parent 7532c609fb
commit c4793241f5
322 changed files with 0 additions and 5360 deletions

View File

@ -88,7 +88,6 @@ class DoubleChestInventory extends ChestInventory implements InventoryHolder{
/**
* @param Item[] $items
* @param bool $send
*/
public function setContents(array $items, bool $send = true) : void{
$size = $this->getSize();
@ -128,16 +127,10 @@ class DoubleChestInventory extends ChestInventory implements InventoryHolder{
parent::onClose($who);
}
/**
* @return ChestInventory
*/
public function getLeftSide() : ChestInventory{
return $this->left;
}
/**
* @return ChestInventory
*/
public function getRightSide() : ChestInventory{
return $this->right;
}