Passed
Push — v4 ( 118ebd...a87f10 )
by Benjamin
04:01
created
src/services/Metadata.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
             $this->selectDimensionOptions = $this->getSelectOptions('DIMENSION');
284 284
         }
285 285
 
286
-        if($filters) {
286
+        if ($filters) {
287 287
             $this->selectDimensionOptions = $this->filterOptions($this->selectDimensionOptions, $filters);
288 288
         }
289 289
 
@@ -303,7 +303,7 @@  discard block
 block discarded – undo
303 303
             $this->selectMetricOptions = $this->getSelectOptions('METRIC');
304 304
         }
305 305
 
306
-        if($filters) {
306
+        if ($filters) {
307 307
             $this->selectMetricOptions = $this->filterOptions($this->selectMetricOptions, $filters);
308 308
         }
309 309
 
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
 
336 336
         // filters
337 337
 
338
-        if($filters) {
338
+        if ($filters) {
339 339
             $options = $this->filterOptions($options, $filters);
340 340
         }
341 341
 
@@ -423,7 +423,7 @@  discard block
 block discarded – undo
423 423
      */
424 424
     private function filterOptions(array $options, array $filters): array
425 425
     {
426
-        if(!$filters) {
426
+        if (!$filters) {
427 427
             return $options;
428 428
         }
429 429
 
Please login to merge, or discard this patch.