Completed
Push — master ( 0fa39d...2d8d21 )
by Dominik
14:39
created
src/Service/Shared/Shared.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Container/Container.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.