What is the recommended method for documenting a class method that accepts a variable number of arguments?
Maybe something like this?
In the case of the ... syntax, PHPStorm 2017.1 uses:
/** * @param Type[] ...$values One or more values. */ public function func(Type ...$values) { // ... }