@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | public function addDocument($data, $id = 0) |
54 | 54 | { |
55 | 55 | if (is_object($data)) { |
56 | - $data = (array) $data; |
|
56 | + $data = (array)$data; |
|
57 | 57 | } elseif (is_string($data)) { |
58 | 58 | $data = json_decode($data, true); |
59 | 59 | } |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | $toinsert = []; |
77 | 77 | foreach ($documents as $document) { |
78 | 78 | if (is_object($document)) { |
79 | - $document = (array) $document; |
|
79 | + $document = (array)$document; |
|
80 | 80 | } elseif (is_string($document)) { |
81 | 81 | $document = json_decode($document, true); |
82 | 82 | } |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | public function replaceDocument($data, $id) |
167 | 167 | { |
168 | 168 | if (is_object($data)) { |
169 | - $data = (array) $data; |
|
169 | + $data = (array)$data; |
|
170 | 170 | } elseif (is_string($data)) { |
171 | 171 | $data = json_decode($data, true); |
172 | 172 | } |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | $toreplace = []; |
189 | 189 | foreach ($documents as $document) { |
190 | 190 | if (is_object($document)) { |
191 | - $document = (array) $document; |
|
191 | + $document = (array)$document; |
|
192 | 192 | } elseif (is_string($document)) { |
193 | 193 | $document = json_decode($document, true); |
194 | 194 | } |
@@ -109,17 +109,17 @@ discard block |
||
109 | 109 | public function highlight($fields = [], $settings = []): self |
110 | 110 | { |
111 | 111 | |
112 | - if (count($fields) === 0 && count($settings)===0) { |
|
113 | - $this->params['highlight'] = new \stdClass(); |
|
112 | + if (count($fields) === 0 && count($settings) === 0) { |
|
113 | + $this->params['highlight'] = new \stdClass(); |
|
114 | 114 | return $this; |
115 | 115 | } |
116 | 116 | $this->params['highlight'] = []; |
117 | 117 | if (count($fields) > 0) { |
118 | - $this->params['highlight']['fields'] =$fields; |
|
118 | + $this->params['highlight']['fields'] = $fields; |
|
119 | 119 | } |
120 | - if (count($settings)>0) { |
|
120 | + if (count($settings) > 0) { |
|
121 | 121 | foreach ($settings as $name => $value) { |
122 | - $this->params['highlight'][$name] =$value; |
|
122 | + $this->params['highlight'][$name] = $value; |
|
123 | 123 | } |
124 | 124 | } |
125 | 125 | return $this; |
@@ -257,10 +257,10 @@ discard block |
||
257 | 257 | $group = $field; |
258 | 258 | } |
259 | 259 | $terms = ['field'=>$field]; |
260 | - if ($limit !==null) { |
|
260 | + if ($limit !== null) { |
|
261 | 261 | $terms['size'] = $limit; |
262 | 262 | } |
263 | - $this->params['aggs'][$group] =['terms' =>$terms]; |
|
263 | + $this->params['aggs'][$group] = ['terms' =>$terms]; |
|
264 | 264 | return $this; |
265 | 265 | } |
266 | 266 |