1 | <?php |
||
5 | class Stage extends PipelineEndpoint |
||
6 | { |
||
7 | const ENDPOINT = 'stages'; |
||
8 | |||
9 | public function findAll() |
||
13 | |||
14 | public function find($stageKey) |
||
18 | |||
19 | public function create($name) |
||
20 | { |
||
21 | return $this->client->put(sprintf('pipelines/%s/%s', $this->pipelineKey, self::ENDPOINT), [ |
||
22 | 'form_params' => [ |
||
23 | 'name' => $name, |
||
24 | ], |
||
25 | ]); |
||
26 | } |
||
27 | |||
28 | public function delete($stageKey) |
||
32 | |||
33 | public function edit($stageKey, $name) |
||
41 | } |
||
42 |