@@ -1,6 +1,6 @@ discard block |
||
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 |
||
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`', |
@@ -1,6 +1,6 @@ discard block |
||
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 |
||
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`', |