Passed
Push — master ( 60c378...33ffe1 )
by Ondřej
02:20
created
src/Ivory/Type/ITypeDictionaryCompiler.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\Type;
4 4
 
5 5
 interface ITypeDictionaryCompiler
Please login to merge, or discard this patch.
src/Ivory/Type/IType.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\Type;
4 4
 
5 5
 use Ivory\INamedDbObject;
Please login to merge, or discard this patch.
src/Ivory/Type/TypeDictionary.php 1 patch
Spacing   +3 added lines, -3 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\Type;
4 4
 
5 5
 use Ivory\Connection\IConnection;
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
             // necessary for the forward reference to be valid once the aliased type finally appears in the type map
324 324
             $this->qualNameTypeMap[$schemaName] = [];
325 325
         }
326
-        $this->typeAliases[$alias] =& $this->qualNameTypeMap[$schemaName][$typeName];
326
+        $this->typeAliases[$alias] = & $this->qualNameTypeMap[$schemaName][$typeName];
327 327
     }
328 328
 
329 329
     /**
@@ -340,7 +340,7 @@  discard block
 block discarded – undo
340 340
         foreach ($this->typeSearchPath as $schemaName) {
341 341
             foreach (($this->qualNameTypeMap[$schemaName] ?? []) as $typeName => $type) {
342 342
                 if (!isset($this->searchedNameCache[$typeName])) {
343
-                    $this->searchedNameCache[$typeName] =& $this->qualNameTypeMap[$schemaName][$typeName];
343
+                    $this->searchedNameCache[$typeName] = & $this->qualNameTypeMap[$schemaName][$typeName];
344 344
                 }
345 345
             }
346 346
         }
Please login to merge, or discard this patch.
src/Ivory/Utils/System.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\Utils;
4 4
 
5 5
 class System
Please login to merge, or discard this patch.
src/Ivory/Utils/Singleton.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\Utils;
4 4
 
5 5
 /**
Please login to merge, or discard this patch.
src/Ivory/Utils/NotSerializable.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\Utils;
4 4
 
5 5
 use Ivory\Exception\UnsupportedException;
Please login to merge, or discard this patch.
src/Ivory/Utils/StringUtils.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\Utils;
4 4
 
5 5
 class StringUtils
Please login to merge, or discard this patch.
src/Ivory/Data/Map/IRelationMap.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\Data\Map;
4 4
 
5 5
 use Ivory\Relation\IRelation;
Please login to merge, or discard this patch.
src/Ivory/Data/Map/ArrayMapMacros.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\Data\Map;
4 4
 
5 5
 // Until PHP has generics, there will have to be separate interfaces for maps storing different types of objects.
Please login to merge, or discard this patch.