Passed
Pull Request — main (#49)
by
unknown
05:23 queued 03:24
created
src/Connection.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         $this->connectionId = UUID::uuid4()->toString();
29 29
         if(isset($connectionParams['useUUID']) && $connectionParams['useUUID']){
30 30
             $this->isUsingUUID = true;
31
-        }else{
31
+        } else{
32 32
             $this->isUsingUUID = false;
33 33
         }
34 34
         unset($connectionParams['useUUID']);
Please login to merge, or discard this patch.
src/Manager/TableManager.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
         try {
134 134
             $this->getTable($table_name);
135 135
             return true;
136
-        }catch(TableDoesNotExist $e){
136
+        } catch(TableDoesNotExist $e){
137 137
             return false;
138 138
         }
139 139
     }
Please login to merge, or discard this patch.