getMethodByName() 공개 메소드

public getMethodByName ( string $name ) : Method | null
$name string
리턴 WsdlToPhp\PackageGenerator\Model\Method | null
예제 #1
0
 /**
  * Returns the method by its original name
  * @uses Service::getMethods()
  * @uses AbstractModel::getName()
  * @param string $methodName the original method name
  * @return Method|null
  */
 public function getMethod($methodName)
 {
     return $this->methods->getMethodByName($methodName);
 }