instance() public static méthode

public static instance ( ) : MethodBuilder
Résultat MethodBuilder
 /**
  * @return void
  */
 private function buildForMethods()
 {
     $classMethods = $this->reflectionClass()->getMethods();
     $methods = [];
     foreach ($classMethods as $classMethod) {
         $webMethodAnnotation = $this->annotationReader->getMethodAnnotation($classMethod, '\\WSDL\\Annotation\\WebMethod');
         if ($webMethodAnnotation === null) {
             continue;
         }
         $methodBuilder = MethodBuilder::instance();
         /** @var MethodAnnotation[] $methodAnnotations */
         $methodAnnotations = $this->annotationReader->getMethodAnnotations($classMethod);
         foreach ($methodAnnotations as $methodAnnotation) {
             $methodAnnotation->build($methodBuilder, $classMethod);
         }
         $methods[] = $methodBuilder->build();
     }
     $this->builder->setMethods($methods);
 }