Represents the parameters defined in a method
Inheritance: implements Countable, implements Iterator
Example #1
0
 /**
  * Returns the number of required parameters the method has
  *
  * @return string
  */
 public function getInternalParameters()
 {
     if (is_object($this->parameters)) {
         $parameters = $this->parameters->getParameters();
         if (count($parameters)) {
             return count($parameters) . ', ...';
         }
     }
     return "";
 }