Passed
Push — master ( 46262d...417a35 )
by Thierry
02:15
created
src/Di/Container.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@
 block discarded – undo
178 178
             }
179 179
             return $this->offsetGet($sClass);
180 180
         }
181
-        catch(Exception|Throwable $e)
181
+        catch(Exception | Throwable $e)
182 182
         {
183 183
             $xTranslator = $this->g(Translator::class);
184 184
             $sMessage = $xTranslator->trans('errors.class.container', ['name' => $sClass]);
Please login to merge, or discard this patch.
src/Plugin/Request/CallableClass/CallableClassPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -303,7 +303,7 @@
 block discarded – undo
303 303
             $xCallableObject = $this->xRegistry->getCallableObject($sRequestedClass);
304 304
             return $xCallableObject->call($sRequestedMethod, $this->xParameterReader->args());
305 305
         }
306
-        catch(ReflectionException|SetupException $e)
306
+        catch(ReflectionException | SetupException $e)
307 307
         {
308 308
             // Unable to find the requested class or method
309 309
             $this->di->getLogger()->error($e->getMessage());
Please login to merge, or discard this patch.