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

@@ -104,7 +104,7 @@ class Color{
/**
* Mixes the supplied list of colours together to produce a result colour.
*
* @param Color[] ...$colors
* @param Color ...$colors
* @return Color
*/
public static function mix(Color ...$colors) : Color{

View File

@@ -73,7 +73,7 @@ class UUID{
/**
* Creates an UUIDv3 from binary data or list of binary data
*
* @param string[] ...$data
* @param string ...$data
* @return UUID
*/
public static function fromData(string ...$data) : UUID{