Passed
Push — master ( 0c19f1...8279ff )
by Ondřej
06:33
created
src/Ivory/Query/IRelationDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Ivory\Query;
4 4
 
5 5
 use Ivory\Lang\Sql\ISqlPredicate;
Please login to merge, or discard this patch.
src/Ivory/Query/SortedRelationDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Ivory\Query;
4 4
 
5 5
 use Ivory\Lang\Sql\ISqlSortExpression;
Please login to merge, or discard this patch.
src/Ivory/Query/ISqlPatternStatement.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Ivory\Query;
4 4
 
5 5
 use Ivory\Exception\InvalidStateException;
Please login to merge, or discard this patch.
src/Ivory/Query/ICommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Ivory\Query;
4 4
 
5 5
 use Ivory\Type\ITypeDictionary;
Please login to merge, or discard this patch.
src/Ivory/Query/LimitedRelationDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Ivory\Query;
4 4
 
5 5
 use Ivory\Type\ITypeDictionary;
Please login to merge, or discard this patch.
src/Ivory/Query/RelationDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Ivory\Query;
4 4
 
5 5
 abstract class RelationDefinition implements IRelationDefinition
Please login to merge, or discard this patch.
src/Ivory/Query/SqlRelationDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Ivory\Query;
4 4
 
5 5
 /**
Please login to merge, or discard this patch.
src/Ivory/Query/SqlPatternDefinitionMacros.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Ivory\Query;
4 4
 
5 5
 use Ivory\Exception\InvalidStateException;
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
             $curFragmentNum++;
218 218
             $argsProcessed += count($posParams);
219 219
 
220
-            $curFragment =& $fragmentsAndParamValues[$argsProcessed];
220
+            $curFragment = & $fragmentsAndParamValues[$argsProcessed];
221 221
             $argsProcessed++;
222 222
         } while (isset($curFragment));
223 223
 
Please login to merge, or discard this patch.
src/Ivory/Query/ConstrainedRelationDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 namespace Ivory\Query;
4 4
 
5 5
 use Ivory\Lang\Sql\ISqlPredicate;
Please login to merge, or discard this patch.