Completed
Push — master ( 346131...a9d641 )
by Adrian
02:26
created
src/Manticoresearch/Connection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Manticoresearch/Endpoints/Nodes/CreatePlugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
src/Manticoresearch/Endpoints/Indices/Drop.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
src/Manticoresearch/Endpoints/Indices/Create.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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.');
Please login to merge, or discard this patch.
src/Manticoresearch/Query.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     public function toArray()
15 15
     {
16 16
 
17
-       return  $this->_toArray($this->_params);
17
+        return  $this->_toArray($this->_params);
18 18
     }
19 19
 
20 20
     protected function _toArray($params)
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 {
9 9
     protected $_params;
10 10
 
11
-    public function add($k,$v) {
11
+    public function add($k, $v) {
12 12
         $this->_params[$k] = $v;
13 13
     }
14 14
     public function toArray()
@@ -26,9 +26,9 @@  discard block
 block discarded – undo
26 26
             } elseif (is_array($v)) {
27 27
                 $return[$k] = $this->_toArray($v);
28 28
             } else {
29
-                if($v!==null) {
29
+                if ($v !== null) {
30 30
                     $return[$k] = $v;
31
-                }else {
31
+                } else {
32 32
                     return null;
33 33
                 }
34 34
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
             } else {
29 29
                 if($v!==null) {
30 30
                     $return[$k] = $v;
31
-                }else {
31
+                } else {
32 32
                     return null;
33 33
                 }
34 34
 
Please login to merge, or discard this patch.
src/Manticoresearch/Query/Match.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     public function __construct($keywords, $fields)
12 12
     {
13
-        $this->_params['match'] =[$fields => $keywords];
13
+        $this->_params['match'] = [$fields => $keywords];
14 14
     }
15 15
 
16 16
 }
17 17
\ No newline at end of file
Please login to merge, or discard this patch.
src/Manticoresearch/Query/BoolQuery.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,17 +10,17 @@
 block discarded – undo
10 10
 {
11 11
     public function must($args):self
12 12
     {
13
-        $this->_params['must'][]= $args;
13
+        $this->_params['must'][] = $args;
14 14
         return $this;
15 15
     }
16 16
     public function mustNot($args):self
17 17
     {
18
-        $this->_params['must_not'][]= $args;
18
+        $this->_params['must_not'][] = $args;
19 19
         return $this;
20 20
     }
21 21
     public function should($args):self
22 22
     {
23
-        $this->_params['should'][]= $args;
23
+        $this->_params['should'][] = $args;
24 24
         return $this;
25 25
     }
26 26
     public function toArray()
Please login to merge, or discard this patch.
src/Manticoresearch/Query/Equals.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
 class Equals extends Query
10 10
 {
11
-    public function __construct($field,$args)
11
+    public function __construct($field, $args)
12 12
     {
13 13
         $this->_params['equals'] = [$field => $args];
14 14
     }
Please login to merge, or discard this patch.
src/Manticoresearch/Query/Range.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
 class Range extends Query
10 10
 {
11
-    public function __construct($field,$args=[])
11
+    public function __construct($field, $args = [])
12 12
     {
13 13
         $this->_params['range'] = [$field => $args];
14 14
     }
Please login to merge, or discard this patch.