Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function takeover(array $params = []): PromiseInterface |
||
30 | { |
||
31 | return $this->client->getConfiguration()->getGuzzle()->sendAsync( |
||
32 | new Request('PUT', $this->client->getConfiguration()->getBaseUri() . '/scheduler/takeover', [], $this->client->getConfiguration()->getFormat()->formatParams($params)) |
||
33 | ); |
||
34 | } |
||
35 | |||
54 |