@@ -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\Instruction\Relation; |
6 | 6 | |
@@ -32,13 +32,13 @@ discard block |
||
32 | 32 | return $this->manyNestedInThe($property); |
33 | 33 | } |
34 | 34 | if (!isset($this->loader)) { |
35 | - throw NoLoaderAvailable::for($this->class); |
|
35 | + throw NoLoaderAvailable::for ($this->class); |
|
36 | 36 | } |
37 | 37 | if ($this->implements(Proxy::class, $this->class)) { |
38 | 38 | return $this->manyProxiesInThe($property); |
39 | 39 | } |
40 | 40 | if (!isset($this->container)) { |
41 | - throw NoContainerAvailable::for($this->class); |
|
41 | + throw NoContainerAvailable::for ($this->class); |
|
42 | 42 | } |
43 | 43 | return $this->oneProxyInThe($property); |
44 | 44 | } |