@@ -96,7 +96,7 @@ |
||
| 96 | 96 | public function getService() |
| 97 | 97 | { |
| 98 | 98 | // optionally use shared object |
| 99 | - if (! is_null($this->serviceObject)) { |
|
| 99 | + if (!is_null($this->serviceObject)) { |
|
| 100 | 100 | return $this->serviceObject; |
| 101 | 101 | } |
| 102 | 102 | // parse arguments |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | // decorate service identifier |
| 139 | 139 | $decoratedId = $this->serviceIdDecorator->decorate($id); |
| 140 | 140 | // check if service exists |
| 141 | - if (! $this->has($decoratedId)) { |
|
| 141 | + if (!$this->has($decoratedId)) { |
|
| 142 | 142 | throw new NotFoundException(sprintf('Service "%s" does not exist', $decoratedId)); |
| 143 | 143 | } |
| 144 | 144 | // exit |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | public function __call(string $method, array $arguments) |
| 205 | 205 | { |
| 206 | 206 | // disallow any arguments |
| 207 | - if (! empty($arguments)) { |
|
| 207 | + if (!empty($arguments)) { |
|
| 208 | 208 | throw new ContainerException('Service must be get without arguments'); |
| 209 | 209 | } |
| 210 | 210 | // check prefix |