Passed
Push — master ( f7ce50...d94e51 )
by Ondřej
02:04
created
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/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/Command.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 Command implements ICommand
Please login to merge, or discard this patch.
src/Ivory/StdCoreFactory.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;
4 4
 
5 5
 use Ivory\Cache\CacheControl;
Please login to merge, or discard this patch.
src/Ivory/Cache/ICacheControl.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\Cache;
4 4
 
5 5
 use Psr\Cache\CacheException;
Please login to merge, or discard this patch.
src/Ivory/Cache/CacheControl.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\Cache;
4 4
 
5 5
 use Psr\Cache\CacheItemPoolInterface;
Please login to merge, or discard this patch.