What is the recommended method for documenting a class method that accepts a variable number of arguments?
Maybe something like this?
/** * @param mixed $numbers,... Description */ Public function sum ($numbers)
In the method, $numbers will not be used.