Passed
Push — main ( 30e650...8f48f2 )
by Rafael
03:20
created
src/Core/Base/Controller/Trait/DbTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
 trait DbTrait
24 24
 {
25
-    public static function connectDb(\stdClass|null $db = null): bool
25
+    public static function connectDb(\stdClass | null $db = null): bool
26 26
     {
27 27
         if ($db === null || !Config::checkDatabaseConnection($db)) {
28 28
             return false;
Please login to merge, or discard this patch.
src/Core/Tools/Dispatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
         $basepath = $realpath . $module;
63 63
 
64 64
         $className = $class . '\\' . $module . '\\Controller\\' . $controller;
65
-        $filename = $basepath . '/Controller/' . $controller . '.php';;
65
+        $filename = $basepath . '/Controller/' . $controller . '.php'; ;
66 66
 
67 67
         Debug::message('Filename: ' . $filename);
68 68
         Debug::message('Class: ' . $className);
Please login to merge, or discard this patch.