Passed
Push — master ( 9def21...e0f493 )
by Martin
02:30
created
src/ContainerTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,11 +69,11 @@
 block discarded – undo
69 69
             return $this->services[$name];
70 70
         }
71 71
 
72
-        if (!method_exists($this, $name.'Factory')) {
72
+        if (!method_exists($this, $name . 'Factory')) {
73 73
             throw ServiceNotFoundException::create($name);
74 74
         }
75 75
 
76
-        $service = $this->{$name.'Factory'}();
76
+        $service = $this->{$name . 'Factory'}();
77 77
 
78 78
         return $this->setService($name, $service);
79 79
     }
Please login to merge, or discard this patch.