Fix variadic type docs ...again

PhpStorm changed its mind how it wants these documenting in 2018.1, and apparently the correct syntax follows the PHP code.
This commit is contained in:
Dylan K. Taylor
2018-04-02 12:33:24 +01:00
parent 8ce0fab8cc
commit eba1ca030c
7 changed files with 9 additions and 9 deletions

View File

@ -82,7 +82,7 @@ interface Inventory{
*
* Returns the Items that did not fit.
*
* @param Item[] ...$slots
* @param Item ...$slots
*
* @return Item[]
*/
@ -101,7 +101,7 @@ interface Inventory{
* Removes the given Item from the inventory.
* It will return the Items that couldn't be removed.
*
* @param Item[] ...$slots
* @param Item ...$slots
*
* @return Item[]
*/