Passed
Push — master ( 4d714e...d8f945 )
by Jesse
02:37
created
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
 
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
  */
16 16
 final class NoContainerAvailable extends BadMethodCall implements InvalidMapperConfiguration
17 17
 {
18
-    public static function for(string $class) : self
18
+    public static function for (string $class) : self
19 19
     {
20 20
         return new self(sprintf(
21 21
             'Could not produce mapping due to a missing container for class `%s`',
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
 
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
  */
16 16
 final class NoLoaderAvailable extends BadMethodCall implements InvalidMapperConfiguration
17 17
 {
18
-    public static function for(string $class) : self
18
+    public static function for (string $class) : self
19 19
     {
20 20
         return new self(sprintf(
21 21
             'Could not produce mapping due to a missing loader for class `%s`',
Please login to merge, or discard this patch.