| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 14 | 
| Code Lines | 9 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 34 | public function switch(string $environmentUuid, string $branch): OperationResponse | ||
| 35 |     { | ||
| 36 | |||
| 37 | $options = [ | ||
| 38 | 'json' => [ | ||
| 39 | 'branch' => $branch, | ||
| 40 | ], | ||
| 41 | ]; | ||
| 42 | |||
| 43 | return new OperationResponse( | ||
| 44 | $this->client->request( | ||
| 45 | 'post', | ||
| 46 | "/environments/$environmentUuid/code/actions/switch", | ||
| 47 | $options | ||
| 48 | ) | ||
| 77 |