Conditions | 3 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
19 | public function setBody($params = null) |
||
20 | { |
||
21 | if (isset($params['variable'])) { |
||
22 | return parent::setBody([ |
||
23 | 'query' => "SET CLUSTER" . $this->cluster . " GLOBAL '" . $params['variable']['name'], "'=" . |
||
24 | (is_numeric($params['variable']['value']) ? |
||
25 | $params['variable']['value'] : "'" . $params['variable']['value'] . "'") |
||
26 | ]); |
||
27 | } |
||
28 | throw new RuntimeException('Variable is missing for /cluster/set'); |
||
29 | } |
||
47 |