Passed
Push — master ( a9556d...8d29f3 )
by Dominik
03:16
created
src/Converter/IteratableToNodeConverterInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Saxulum\ElasticSearchQueryBuilder\Converter;
6 6
 
Please login to merge, or discard this patch.
src/Converter/IteratableToNodeConverter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Saxulum\ElasticSearchQueryBuilder\Converter;
6 6
 
@@ -81,10 +81,10 @@  discard block
 block discarded – undo
81 81
         $key = (string) $key;
82 82
 
83 83
         if ($isArray) {
84
-            return $path . '[' . $key . ']';
84
+            return $path.'['.$key.']';
85 85
         }
86 86
 
87
-        return $path !== '' ? $path . '.' . $key : $key;
87
+        return $path !== '' ? $path.'.'.$key : $key;
88 88
     }
89 89
 
90 90
     /**
Please login to merge, or discard this patch.
src/Converter/ScalarToNodeConverter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Saxulum\ElasticSearchQueryBuilder\Converter;
6 6
 
Please login to merge, or discard this patch.
src/Converter/ScalarToNodeConverterInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Saxulum\ElasticSearchQueryBuilder\Converter;
6 6
 
Please login to merge, or discard this patch.