@@ -201,10 +201,10 @@ discard block |
||
| 201 | 201 | public function enableEmail(string $environmentUuid): OperationResponse |
| 202 | 202 | { |
| 203 | 203 | return new OperationResponse( |
| 204 | - $this->client->request( |
|
| 204 | + $this->client->request( |
|
| 205 | 205 | 'post', |
| 206 | 206 | "/environments/$environmentUuid/email/actions/enable" |
| 207 | - ) |
|
| 207 | + ) |
|
| 208 | 208 | ); |
| 209 | 209 | } |
| 210 | 210 | |
@@ -218,10 +218,10 @@ discard block |
||
| 218 | 218 | public function disableEmail(string $environmentUuid): OperationResponse |
| 219 | 219 | { |
| 220 | 220 | return new OperationResponse( |
| 221 | - $this->client->request( |
|
| 221 | + $this->client->request( |
|
| 222 | 222 | 'post', |
| 223 | 223 | "/environments/$environmentUuid/email/actions/disable" |
| 224 | - ) |
|
| 224 | + ) |
|
| 225 | 225 | ); |
| 226 | 226 | } |
| 227 | 227 | |