getMethods() public méthode

Returns the methods of the service
public getMethods ( ) : Method
Résultat WsdlToPhp\PackageGenerator\Container\Model\Method
 /**
  * @param string $serviceVariableName
  * @param ServiceModel $service
  * @return Tutorial
  */
 protected function addServiceSoapHeadersDefinitions($serviceVariableName, ServiceModel $service)
 {
     $added = array();
     foreach ($service->getMethods() as $method) {
         $added = array_merge($added, $this->addServiceSoapHeadersDefinition($serviceVariableName, $method, $added));
     }
     return $this;
 }