Completed
Push — master ( 321b50...bfb7e6 )
by Ivan
14:19
created
src/DriverAbstract.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
         $new = '';
13 13
         $par = array_values($par);
14 14
         if (substr_count($sql, '?') === 2 && !is_array($par[0])) {
15
-            $par = [ $par ];
15
+            $par = [$par];
16 16
         }
17 17
         $parts = explode('??', $sql);
18 18
         $index = 0;
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
             $index += count($tmp) - 1;
23 23
             if (isset($par[$index])) {
24 24
                 if (!is_array($par[$index])) {
25
-                    $par[$index] = [ $par[$index] ];
25
+                    $par[$index] = [$par[$index]];
26 26
                 }
27 27
                 $params = $par[$index];
28 28
                 array_splice($par, $index, 1, $params);
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
                 $new .= implode(',', array_fill(0, count($params), '?'));
31 31
             }
32 32
         }
33
-        return [ $new, $par ];
33
+        return [$new, $par];
34 34
     }
35 35
     /**
36 36
      * Run a query (prepare & execute).
Please login to merge, or discard this patch.
src/driver/pdo/Driver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
                     isset($this->connection['opts']) ? $this->connection['opts'] : []
45 45
                 );
46 46
             } catch (\PDOException $e) {
47
-                throw new DBException('Connect error: ' . $e->getMessage());
47
+                throw new DBException('Connect error: '.$e->getMessage());
48 48
             }
49 49
         }
50 50
     }
Please login to merge, or discard this patch.
src/driver/pdo/Statement.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -24,28 +24,28 @@
 block discarded – undo
24 24
         foreach ($data as $i => $v) {
25 25
             switch (gettype($v)) {
26 26
                 case 'boolean':
27
-                    $this->statement->bindValue($i+1, $v, \PDO::PARAM_BOOL);
27
+                    $this->statement->bindValue($i + 1, $v, \PDO::PARAM_BOOL);
28 28
                     break;
29 29
                 case 'integer':
30
-                    $this->statement->bindValue($i+1, $v, \PDO::PARAM_INT);
30
+                    $this->statement->bindValue($i + 1, $v, \PDO::PARAM_INT);
31 31
                     break;
32 32
                 case 'NULL':
33
-                    $this->statement->bindValue($i+1, $v, \PDO::PARAM_NULL);
33
+                    $this->statement->bindValue($i + 1, $v, \PDO::PARAM_NULL);
34 34
                     break;
35 35
                 case 'double':
36
-                    $this->statement->bindValue($i+1, $v);
36
+                    $this->statement->bindValue($i + 1, $v);
37 37
                     break;
38 38
                 default:
39 39
                     // keep in mind oracle needs a transaction when inserting LOBs, aside from the specific syntax:
40 40
                     // INSERT INTO table (column, lobcolumn) VALUES (?, ?, EMPTY_BLOB()) RETURNING lobcolumn INTO ?
41 41
                     if (is_resource($v) && get_resource_type($v) === 'stream') {
42
-                        $this->statement->bindParam($i+1, $v, \PDO::PARAM_LOB);
42
+                        $this->statement->bindParam($i + 1, $v, \PDO::PARAM_LOB);
43 43
                         break;
44 44
                     }
45 45
                     if (!is_string($data[$i])) {
46 46
                         $data[$i] = serialize($data[$i]);
47 47
                     }
48
-                    $this->statement->bindValue($i+1, $v);
48
+                    $this->statement->bindValue($i + 1, $v);
49 49
                     break;
50 50
             }
51 51
         }
Please login to merge, or discard this patch.
src/driver/oracle/Schema.php 2 patches
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.
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -29,19 +29,19 @@  discard block
 block discarded – undo
29 29
         $columns = Collection::from($this
30 30
             ->query(
31 31
                 "SELECT * FROM all_tab_cols WHERE UPPER(table_name) = ? AND UPPER(owner) = ? and hidden_column = 'NO'",
32
-                [ strtoupper($table), strtoupper($this->name()) ]
32
+                [strtoupper($table), strtoupper($this->name())]
33 33
             ))
34
-            ->map(function ($v) {
34
+            ->map(function($v) {
35 35
                 $new = [];
36 36
                 foreach ($v as $kk => $vv) {
37 37
                     $new[strtoupper($kk)] = $vv;
38 38
                 }
39 39
                 return $new;
40 40
             })
41
-            ->mapKey(function ($v) {
41
+            ->mapKey(function($v) {
42 42
                 return $v['COLUMN_NAME'];
43 43
             })
44
-            ->map(function ($v) {
44
+            ->map(function($v) {
45 45
                 $v['length'] = null;
46 46
                 if (!isset($v['DATA_TYPE'])) {
47 47
                     return $v;
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
                     default:
54 54
                         if (strpos($type, 'char') !== false && strpos($type, '(') !== false) {
55 55
                             // extract length from varchar
56
-                            $v['length'] = (int)explode(')', (explode('(', $type)[1] ?? ''))[0];
56
+                            $v['length'] = (int) explode(')', (explode('(', $type)[1] ?? ''))[0];
57 57
                             $v['length'] = $v['length'] > 0 ? $v['length'] : null;
58 58
                         }
59 59
                         break;
@@ -69,9 +69,9 @@  discard block
 block discarded – undo
69 69
             ->query(
70 70
                 "SELECT constraint_name FROM all_constraints
71 71
                 WHERE table_name = ? AND constraint_type = ? AND UPPER(owner) = ?",
72
-                [ strtoupper($table), 'P', $owner ]
72
+                [strtoupper($table), 'P', $owner]
73 73
             ))
74
-            ->map(function ($v) {
74
+            ->map(function($v) {
75 75
                 $new = [];
76 76
                 foreach ($v as $kk => $vv) {
77 77
                     $new[strtoupper($kk)] = $vv;
@@ -86,9 +86,9 @@  discard block
 block discarded – undo
86 86
                 ->query(
87 87
                     "SELECT column_name FROM all_cons_columns
88 88
                     WHERE table_name = ? AND constraint_name = ? AND UPPER(owner) = ?",
89
-                    [ strtoupper($table), $pkname, $owner ]
89
+                    [strtoupper($table), $pkname, $owner]
90 90
                 ))
91
-                ->map(function ($v) {
91
+                ->map(function($v) {
92 92
                     $new = [];
93 93
                     foreach ($v as $kk => $vv) {
94 94
                         $new[strtoupper($kk)] = $vv;
@@ -117,9 +117,9 @@  discard block
 block discarded – undo
117 117
                         UPPER(ac.OWNER) = ? AND UPPER(ac.R_OWNER) = ? AND
118 118
                         ac.R_CONSTRAINT_NAME = ? AND ac.CONSTRAINT_TYPE = ?
119 119
                     ORDER BY cc.POSITION",
120
-                    [ $owner, $owner, $pkname, 'R' ]
120
+                    [$owner, $owner, $pkname, 'R']
121 121
                 ))
122
-                ->map(function ($v) {
122
+                ->map(function($v) {
123 123
                     $new = [];
124 124
                     foreach ($v as $kk => $vv) {
125 125
                         $new[strtoupper($kk)] = $vv;
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
                  as $relation
130 130
             ) {
131 131
                 $relations[$relation['CONSTRAINT_NAME']]['table'] = $relation['TABLE_NAME'];
132
-                $relations[$relation['CONSTRAINT_NAME']]['keymap'][$primary[(int)$relation['POSITION']-1]] =
132
+                $relations[$relation['CONSTRAINT_NAME']]['keymap'][$primary[(int) $relation['POSITION'] - 1]] =
133 133
                     $relation['COLUMN_NAME'];
134 134
             }
135 135
             foreach ($relations as $data) {
@@ -160,9 +160,9 @@  discard block
 block discarded – undo
160 160
                                 ac.TABLE_NAME = ? AND ac.CONSTRAINT_TYPE = ? AND
161 161
                                 cc.COLUMN_NAME IN (??)
162 162
                             ORDER BY POSITION",
163
-                            [ $owner, $owner, $data['table'], 'R', $columns ]
163
+                            [$owner, $owner, $data['table'], 'R', $columns]
164 164
                         ))
165
-                        ->map(function ($v) {
165
+                        ->map(function($v) {
166 166
                             $new = [];
167 167
                             foreach ($v as $kk => $vv) {
168 168
                                 $new[strtoupper($kk)] = $vv;
@@ -182,9 +182,9 @@  discard block
 block discarded – undo
182 182
                         ->query(
183 183
                             "SELECT COLUMN_NAME FROM all_cons_columns
184 184
                              WHERE UPPER(OWNER) = ? AND CONSTRAINT_NAME = ? ORDER BY POSITION",
185
-                            [ $owner, current($foreign['keymap']) ]
185
+                            [$owner, current($foreign['keymap'])]
186 186
                         ))
187
-                        ->map(function ($v) {
187
+                        ->map(function($v) {
188 188
                             $new = [];
189 189
                             foreach ($v as $kk => $vv) {
190 190
                                 $new[strtoupper($kk)] = $vv;
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
                     $relname = $foreign['table'];
200 200
                     $cntr = 1;
201 201
                     while ($definition->hasRelation($relname) || $definition->getName() == $relname) {
202
-                        $relname = $foreign['table'] . '_' . (++ $cntr);
202
+                        $relname = $foreign['table'].'_'.(++$cntr);
203 203
                     }
204 204
                     $definition->addRelation(
205 205
                         new TableRelation(
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
                     $relname = $data['table'];
216 216
                     $cntr = 1;
217 217
                     while ($definition->hasRelation($relname) || $definition->getName() == $relname) {
218
-                        $relname = $data['table'] . '_' . (++ $cntr);
218
+                        $relname = $data['table'].'_'.(++$cntr);
219 219
                     }
220 220
                     $definition->addRelation(
221 221
                         new TableRelation(
@@ -243,9 +243,9 @@  discard block
 block discarded – undo
243 243
                     LEFT JOIN all_cons_columns cc ON cc.OWNER = ac.OWNER AND cc.CONSTRAINT_NAME = ac.CONSTRAINT_NAME
244 244
                     WHERE UPPER(ac.OWNER) = ? AND UPPER(ac.R_OWNER) = ? AND ac.TABLE_NAME = ? AND ac.CONSTRAINT_TYPE = ?
245 245
                     ORDER BY cc.POSITION",
246
-                    [ $owner, $owner, strtoupper($table), 'R' ]
246
+                    [$owner, $owner, strtoupper($table), 'R']
247 247
                 ))
248
-                ->map(function ($v) {
248
+                ->map(function($v) {
249 249
                     $new = [];
250 250
                     foreach ($v as $kk => $vv) {
251 251
                         $new[strtoupper($kk)] = $vv;
@@ -263,9 +263,9 @@  discard block
 block discarded – undo
263 263
                     ->query(
264 264
                         "SELECT COLUMN_NAME FROM all_cons_columns
265 265
                          WHERE UPPER(OWNER) = ? AND CONSTRAINT_NAME = ? ORDER BY POSITION",
266
-                        [ $owner, current($data['keymap']) ]
266
+                        [$owner, current($data['keymap'])]
267 267
                     ))
268
-                    ->map(function ($v) {
268
+                    ->map(function($v) {
269 269
                         $new = [];
270 270
                         foreach ($v as $kk => $vv) {
271 271
                             $new[strtoupper($kk)] = $vv;
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
                 $relname = $data['table'];
281 281
                 $cntr = 1;
282 282
                 while ($definition->hasRelation($relname) || $definition->getName() == $relname) {
283
-                    $relname = $data['table'] . '_' . (++ $cntr);
283
+                    $relname = $data['table'].'_'.(++$cntr);
284 284
                 }
285 285
                 $definition->addRelation(
286 286
                     new TableRelation(
@@ -303,18 +303,18 @@  discard block
 block discarded – undo
303 303
                  SELECT VIEW_NAME AS TABLE_NAME FROM ALL_VIEWS where UPPER(OWNER) = ?",
304 304
                 [strtoupper($this->connection['name']), strtoupper($this->connection['name'])]
305 305
             ))
306
-            ->map(function ($v) {
306
+            ->map(function($v) {
307 307
                 $new = [];
308 308
                 foreach ($v as $kk => $vv) {
309 309
                     $new[strtoupper($kk)] = $vv;
310 310
                 }
311 311
                 return $new;
312 312
             })
313
-            ->mapKey(function ($v) {
313
+            ->mapKey(function($v) {
314 314
                 return strtolower($v['TABLE_NAME']);
315 315
             })
316 316
             ->pluck('TABLE_NAME')
317
-            ->map(function ($v) {
317
+            ->map(function($v) {
318 318
                 return $this->table($v)->toLowerCase();
319 319
             })
320 320
             ->toArray();
Please login to merge, or discard this patch.
src/schema/TableQueryIterator.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
                 $fields = [];
77 77
                 $exists = false;
78 78
                 foreach ($relation->table->getColumns() as $column) {
79
-                    $nm = $name . static::SEP . $column;
79
+                    $nm = $name.static::SEP.$column;
80 80
                     if (isset($this->aliases[$nm])) {
81 81
                         $nm = $this->aliases[$nm];
82 82
                     }
@@ -90,17 +90,17 @@  discard block
 block discarded – undo
90 90
                 $parts = explode(static::SEP, $name);
91 91
                 $name  = array_pop($parts);
92 92
                 if (!$exists && !count($parts) && !isset($temp[$name])) {
93
-                    $temp[$name] = $relation->many ? [ '___clean' => true ] : null;
93
+                    $temp[$name] = $relation->many ? ['___clean' => true] : null;
94 94
                 }
95 95
                 if ($exists) {
96
-                    $full  = '';
96
+                    $full = '';
97 97
                     foreach ($parts as $item) {
98
-                        $full = $full ? $full . static::SEP . $item : $item;
98
+                        $full = $full ? $full.static::SEP.$item : $item;
99 99
                         $temp = &$temp[$item];
100 100
                         if ($this->relations[$full][0]->many) {
101 101
                             $rpk = [];
102 102
                             foreach ($this->relations[$full][0]->table->getPrimaryKey() as $pkey) {
103
-                                $nm = $full . static::SEP . $pkey;
103
+                                $nm = $full.static::SEP.$pkey;
104 104
                                 if (isset($this->aliases[$nm])) {
105 105
                                     $nm = $this->aliases[$nm];
106 106
                                 }
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
                         }
111 111
                     }
112 112
                     if (!isset($temp[$name])) {
113
-                        $temp[$name] = $relation->many ? [ '___clean' => true ] : null;
113
+                        $temp[$name] = $relation->many ? ['___clean' => true] : null;
114 114
                     }
115 115
                     $temp = &$temp[$name];
116 116
                     if ($relation->many) {
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
                 return;
177 177
             }
178 178
         }
179
-        $this->fetched ++;
179
+        $this->fetched++;
180 180
         while ($this->result->valid()) {
181 181
             $row = $this->result->current();
182 182
             $pk = [];
Please login to merge, or discard this patch.
src/driver/oracle/Statement.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -60,11 +60,11 @@  discard block
 block discarded – undo
60 60
             if (!is_array($err)) {
61 61
                 $err = [];
62 62
             }
63
-            if ($log && (int)$this->driver->option('log_errors', 1)) {
63
+            if ($log && (int) $this->driver->option('log_errors', 1)) {
64 64
                 @file_put_contents(
65 65
                     $log,
66
-                    '--' . date('Y-m-d H:i:s') . ' ERROR: ' . implode(',', $err) . "\r\n" .
67
-                    $this->sql . "\r\n" .
66
+                    '--'.date('Y-m-d H:i:s').' ERROR: '.implode(',', $err)."\r\n".
67
+                    $this->sql."\r\n".
68 68
                     "\r\n",
69 69
                     FILE_APPEND
70 70
                 );
@@ -73,11 +73,11 @@  discard block
 block discarded – undo
73 73
         }
74 74
         if ($log) {
75 75
             $tm = microtime(true) - $tm;
76
-            if ($tm >= (float)$this->driver->option('log_slow', 0)) {
76
+            if ($tm >= (float) $this->driver->option('log_slow', 0)) {
77 77
                 @file_put_contents(
78 78
                     $log,
79
-                    '--' . date('Y-m-d H:i:s') . ' ' . sprintf('%01.6f', $tm) . "s\r\n" .
80
-                    $this->sql . "\r\n" .
79
+                    '--'.date('Y-m-d H:i:s').' '.sprintf('%01.6f', $tm)."s\r\n".
80
+                    $this->sql."\r\n".
81 81
                     "\r\n",
82 82
                     FILE_APPEND
83 83
                 );
Please login to merge, or discard this patch.
src/driver/mysql/Driver.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     {
38 38
         if ($this->lnk === null) {
39 39
             $this->lnk = new \mysqli(
40
-                (isset($this->connection['opts']['persist']) && $this->connection['opts']['persist'] ? 'p:' : '') .
40
+                (isset($this->connection['opts']['persist']) && $this->connection['opts']['persist'] ? 'p:' : '').
41 41
                     $this->connection['host'],
42 42
                 $this->connection['user'],
43 43
                 $this->connection['pass'],
@@ -97,11 +97,11 @@  discard block
 block discarded – undo
97 97
         $res = $this->lnk->query($sql);
98 98
         if ($log) {
99 99
             $tm = microtime(true) - $tm;
100
-            if ($tm >= (float)$this->option('log_slow', 0)) {
100
+            if ($tm >= (float) $this->option('log_slow', 0)) {
101 101
                 @file_put_contents(
102 102
                     $log,
103
-                    '--' . date('Y-m-d H:i:s') . ' ' . sprintf('%01.6f', $tm) . "s\r\n" .
104
-                    $sql . "\r\n" .
103
+                    '--'.date('Y-m-d H:i:s').' '.sprintf('%01.6f', $tm)."s\r\n".
104
+                    $sql."\r\n".
105 105
                     "\r\n",
106 106
                     FILE_APPEND
107 107
                 );
Please login to merge, or discard this patch.
src/driver/sphinx/Driver.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     {
38 38
         if ($this->lnk === null) {
39 39
             $this->lnk = new \mysqli(
40
-                (isset($this->connection['opts']['persist']) && $this->connection['opts']['persist'] ? 'p:' : '') .
40
+                (isset($this->connection['opts']['persist']) && $this->connection['opts']['persist'] ? 'p:' : '').
41 41
                     $this->connection['host'],
42 42
                 $this->connection['user'],
43 43
                 $this->connection['pass'],
@@ -97,11 +97,11 @@  discard block
 block discarded – undo
97 97
         $res = $this->lnk->query($sql);
98 98
         if ($log) {
99 99
             $tm = microtime(true) - $tm;
100
-            if ($tm >= (float)$this->option('log_slow', 0)) {
100
+            if ($tm >= (float) $this->option('log_slow', 0)) {
101 101
                 @file_put_contents(
102 102
                     $log,
103
-                    '--' . date('Y-m-d H:i:s') . ' ' . sprintf('%01.6f', $tm) . "s\r\n" .
104
-                    $sql . "\r\n" .
103
+                    '--'.date('Y-m-d H:i:s').' '.sprintf('%01.6f', $tm)."s\r\n".
104
+                    $sql."\r\n".
105 105
                     "\r\n",
106 106
                     FILE_APPEND
107 107
                 );
Please login to merge, or discard this patch.
src/driver/pdo/Result.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,8 @@
 block discarded – undo
57 57
     }
58 58
     public function next(): void
59 59
     {
60
-        $this->fetched ++;
61
-        $this->last = $this->statement->fetch(\PDO::FETCH_ASSOC)?:null;
60
+        $this->fetched++;
61
+        $this->last = $this->statement->fetch(\PDO::FETCH_ASSOC) ?: null;
62 62
     }
63 63
     public function valid(): bool
64 64
     {
Please login to merge, or discard this patch.