Passed
Push — main ( f39f56...0b88ec )
by Pranjal
02:46
created
src/Facade/Database.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public static function connect(array $connectionParams): DB
36 36
     {
37
-        if(isset(self::$database)) {
37
+        if (isset(self::$database)) {
38 38
             return self::$database;
39 39
         }
40 40
         
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
      *
82 82
      * @return int|numeric-string
83 83
      */
84
-    public static function exec(string $sql): int|string
84
+    public static function exec(string $sql): int | string
85 85
     {
86 86
         return self::getDB()->exec($sql);
87 87
     }
Please login to merge, or discard this patch.