Passed
Push — master ( 46262d...417a35 )
by Thierry
02:15
created
src/Plugin/Response/Dialog/DialogPluginTrait.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,8 @@
 block discarded – undo
17 17
 trait DialogPluginTrait
18 18
 {
19 19
     public function setReturnCode(bool $bReturnCode)
20
-    {}
20
+    {
21
+}
21 22
 
22 23
     public function getUri(): string
23 24
     {
Please login to merge, or discard this patch.
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.