Passed
Push — master ( af06a0...9b6403 )
by Jesse
03:39
created
src/Instruction/Relation/HasMany.php 1 patch
Spacing   +3 added lines, -3 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\Instruction\Relation;
6 6
 
@@ -32,13 +32,13 @@  discard block
 block discarded – undo
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
     }
Please login to merge, or discard this patch.