@@ -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 | |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * @param string $class The class that is missing a container. |
22 | 22 | * @return self The exception object. |
23 | 23 | */ |
24 | - public static function for(string $class) : self |
|
24 | + public static function for (string $class) : self |
|
25 | 25 | { |
26 | 26 | return new self(sprintf( |
27 | 27 | '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 | |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * @param string $class The class that is missing a loader. |
22 | 22 | * @return self The exception object. |
23 | 23 | */ |
24 | - public static function for(string $class) : self |
|
24 | + public static function for (string $class) : self |
|
25 | 25 | { |
26 | 26 | return new self(sprintf( |
27 | 27 | 'Could not produce mapping due to a missing loader for class `%s`', |