コード例 #1
0
ファイル: PublishRecipe.php プロジェクト: karion/mydrinks
 public function open($method = 'GET', $parameters = [])
 {
     parent::open($method, $parameters);
     return new AddRecipeStep($this->client, $this);
 }
コード例 #2
0
ファイル: RemoveRecipe.php プロジェクト: karion/mydrinks
 public function open($method = 'DELETE', $parameters = [])
 {
     parent::open($method, $parameters);
     return new CreateRecipe($this->client, $this);
 }