Passed
Push — master ( 800c76...41ad25 )
by Dominik
02:41
created
src/NodeGenerator.php 1 patch
Spacing   +2 added lines, -2 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\Generator;
6 6
 
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
      * @param int    $position
193 193
      * @param array  $structuredLines
194 194
      */
195
-    private function structuredLine(string $line, string $lastStructuredLine, int &$position, array &$structuredLines)
195
+    private function structuredLine(string $line, string $lastStructuredLine, int & $position, array &$structuredLines)
196 196
     {
197 197
         if (0 === strpos($line, '->add') &&
198 198
             false === strpos($lastStructuredLine, ' )') &&
Please login to merge, or discard this patch.
src/QueryBuilderGenerator.php 1 patch
Spacing   +2 added lines, -2 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\Generator;
6 6
 
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
      * @param int    $position
215 215
      * @param array  $structuredLines
216 216
      */
217
-    private function structuredLine(string $line, string $lastLine, int &$position, array &$structuredLines)
217
+    private function structuredLine(string $line, string $lastLine, int & $position, array &$structuredLines)
218 218
     {
219 219
         if (0 === strpos($line, '->add')) {
220 220
             if (false === strpos($lastLine, '->end') &&
Please login to merge, or discard this patch.