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
3 changed files with 0 additions and 8 deletions

View File

@ -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;