@@ -69,11 +69,11 @@ |
||
| 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 | } |