コード例 #1
0
ファイル: ClassModel.php プロジェクト: nrip/retrofit-php
 /**
  * Add a method to the collection
  *
  * Will set the class headers to the method headers first
  *
  * @param Method $method
  */
 public function addMethod(Method $method)
 {
     $method->addHeaders($this->getHeaders());
     $this->methods[] = $method->toArray();
 }