コード例 #1
0
ファイル: Resource.php プロジェクト: cnam/php-raml-parser
 /**
  * Add a method
  *
  * @param Method $method
  */
 public function addMethod(Method $method)
 {
     $this->methods[$method->getType()] = $method;
 }
コード例 #2
0
 /**
  * Add a method
  *
  * @param Method $method
  */
 public function addMethod(Method $method)
 {
     $this->methods[$method->getType()] = $method;
     foreach ($this->getSecuritySchemes() as $securityScheme) {
         $method->addSecurityScheme($securityScheme);
     }
 }