Completed
Push — master ( e7c0cc...639fe9 )
by Ivan
14:54
created
src/driver/oracle/Driver.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
 
91 91
     public function begin() : bool
92 92
     {
93
-         return $this->transaction = true;
93
+            return $this->transaction = true;
94 94
     }
95 95
     public function commit() : bool
96 96
     {
Please login to merge, or discard this patch.
src/driver/oracle/Schema.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
                     }
125 125
                     return $new;
126 126
                 })
127
-                 as $relation
127
+                    as $relation
128 128
             ) {
129 129
                 $relations[$relation['CONSTRAINT_NAME']]['table'] = $relation['TABLE_NAME'];
130 130
                 $relations[$relation['CONSTRAINT_NAME']]['keymap'][$primary[(int)$relation['POSITION']-1]] =
Please login to merge, or discard this patch.
src/schema/TableColumn.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
             $this->btype = 'enum';
128 128
         } elseif (strpos($type, 'json') !== false) {
129 129
             $this->btype = 'json';
130
-        }  elseif (strpos($type, 'text') !== false || strpos($type, 'char') !== false) {
130
+        } elseif (strpos($type, 'text') !== false || strpos($type, 'char') !== false) {
131 131
             $this->btype = 'text';
132 132
         } elseif (strpos($type, 'int') !== false ||
133 133
             strpos($type, 'bit') !== false ||
Please login to merge, or discard this patch.