Completed
Push — master ( 9b6403...80a993 )
by Jesse
02:09
created
src/Instruction/Has.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 Stratadox\Hydration\Mapper\Instruction;
6 6
 
Please login to merge, or discard this patch.
src/Instruction/Relation/HasOne.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 Stratadox\Hydration\Mapper\Instruction\Relation;
6 6
 
Please login to merge, or discard this patch.
src/InstructsHowToMap.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 Stratadox\Hydration\Mapper;
6 6
 
Please login to merge, or discard this patch.
src/NoLoaderAvailable.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 Stratadox\Hydration\Mapper;
6 6
 
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
     extends BadMethodCallException
11 11
     implements InvalidMapperConfiguration
12 12
 {
13
-    public static function for(string $class) : InvalidMapperConfiguration
13
+    public static function for (string $class) : InvalidMapperConfiguration
14 14
     {
15 15
         return new NoLoaderAvailable(sprintf(
16 16
             'Could not produce mapping due to a missing loader for class `%s`',
Please login to merge, or discard this patch.
src/MakesMap.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 Stratadox\Hydration\Mapper;
6 6
 
Please login to merge, or discard this patch.
src/FindsKeys.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 Stratadox\Hydration\Mapper;
6 6
 
Please login to merge, or discard this patch.
src/Mapper.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 Stratadox\Hydration\Mapper;
6 6
 
Please login to merge, or discard this patch.
src/DefinesRelationships.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 Stratadox\Hydration\Mapper;
6 6
 
Please login to merge, or discard this patch.
src/NoContainerAvailable.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 Stratadox\Hydration\Mapper;
6 6
 
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
     extends BadMethodCallException
11 11
     implements InvalidMapperConfiguration
12 12
 {
13
-    public static function for(string $class) : InvalidMapperConfiguration
13
+    public static function for (string $class) : InvalidMapperConfiguration
14 14
     {
15 15
         return new NoContainerAvailable(sprintf(
16 16
             'Could not produce mapping due to a missing container for class `%s`',
Please login to merge, or discard this patch.