@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | */ |
174 | 174 | public function getTransportHandler(LoggerInterface $logger) |
175 | 175 | { |
176 | - return Transport::create($this->getTransport(), $this,$logger); |
|
176 | + return Transport::create($this->getTransport(), $this, $logger); |
|
177 | 177 | } |
178 | 178 | |
179 | 179 | /** |
@@ -192,9 +192,9 @@ discard block |
||
192 | 192 | * @param string|null |
193 | 193 | * @return mixed|null |
194 | 194 | */ |
195 | - public function getConfig($key = null) |
|
195 | + public function getConfig($key = null) |
|
196 | 196 | { |
197 | - if($key === null) { |
|
197 | + if ($key === null) { |
|
198 | 198 | return $this->config; |
199 | 199 | } |
200 | 200 | return $this->config[$key] ?? null; |
@@ -15,8 +15,8 @@ |
||
15 | 15 | |
16 | 16 | public function setBody($params = null) |
17 | 17 | { |
18 | - if(isset($params['name'], $params['type']) && $params['library']) { |
|
19 | - return parent::setBody(['query' => "CREATE PLUGIN " . $params['name']." TYPE ".strtoupper($params['type']). " SONAME ".$params['library']]); |
|
18 | + if (isset($params['name'], $params['type']) && $params['library']) { |
|
19 | + return parent::setBody(['query' => "CREATE PLUGIN " . $params['name'] . " TYPE " . strtoupper($params['type']) . " SONAME " . $params['library']]); |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | throw new RuntimeException('Incomplete request for /nodes/createplugin'); |
@@ -13,11 +13,11 @@ |
||
13 | 13 | */ |
14 | 14 | protected $_index; |
15 | 15 | |
16 | - public function setBody( $params = null) |
|
16 | + public function setBody($params = null) |
|
17 | 17 | { |
18 | - if(isset( $this->_index)) { |
|
18 | + if (isset($this->_index)) { |
|
19 | 19 | return parent::setBody(['query' => "DROP TABLE " . |
20 | - (isset($params['silent']) && $params['silent']===true?' IF EXISTS ':''). |
|
20 | + (isset($params['silent']) && $params['silent'] === true ? ' IF EXISTS ' : '') . |
|
21 | 21 | $this->_index]); |
22 | 22 | } |
23 | 23 | throw new RuntimeException('Missing index name in /indices/drop'); |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | { |
23 | 23 | if (isset($this->_index)) { |
24 | 24 | $columns = []; |
25 | - if(isset($params['columns'] )) { |
|
25 | + if (isset($params['columns'])) { |
|
26 | 26 | foreach ($params['columns'] as $name => $settings) { |
27 | 27 | $column = $name . ' ' . $settings['type']; |
28 | 28 | if (isset($settings['options']) && count($settings['options']) > 0) { |
@@ -32,16 +32,16 @@ discard block |
||
32 | 32 | } |
33 | 33 | } |
34 | 34 | $options = ""; |
35 | - if(isset($params['settings'] )) { |
|
36 | - foreach($params['settings'] as $name=>$value) { |
|
37 | - $options.=" ".$name." = '".$value."'"; |
|
35 | + if (isset($params['settings'])) { |
|
36 | + foreach ($params['settings'] as $name=>$value) { |
|
37 | + $options .= " " . $name . " = '" . $value . "'"; |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | } |
41 | - return parent::setBody(['query' => "CREATE TABLE ". |
|
42 | - (isset($params['silent']) && $params['silent']===true?' IF NOT EXISTS ':''). |
|
43 | - $this->_index. |
|
44 | - (count($columns)>0?"(".implode(",",$columns).")":" ") |
|
41 | + return parent::setBody(['query' => "CREATE TABLE " . |
|
42 | + (isset($params['silent']) && $params['silent'] === true ? ' IF NOT EXISTS ' : '') . |
|
43 | + $this->_index . |
|
44 | + (count($columns) > 0 ? "(" . implode(",", $columns) . ")" : " ") |
|
45 | 45 | .$options]); |
46 | 46 | } |
47 | 47 | throw new RuntimeException('Index name is missing.'); |