@@ -12,7 +12,7 @@ discard block |
||
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 |
||
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 |
||
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). |
@@ -44,7 +44,7 @@ |
||
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 | } |
@@ -24,28 +24,28 @@ |
||
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 | } |
@@ -124,7 +124,7 @@ |
||
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]] = |
@@ -32,19 +32,19 @@ discard block |
||
32 | 32 | $columns = Collection::from($this |
33 | 33 | ->query( |
34 | 34 | "SELECT * FROM user_tab_cols WHERE UPPER(table_name) = ?", |
35 | - [ strtoupper($table) ] |
|
35 | + [strtoupper($table)] |
|
36 | 36 | )) |
37 | - ->map(function ($v) { |
|
37 | + ->map(function($v) { |
|
38 | 38 | $new = []; |
39 | 39 | foreach ($v as $kk => $vv) { |
40 | 40 | $new[strtoupper($kk)] = $vv; |
41 | 41 | } |
42 | 42 | return $new; |
43 | 43 | }) |
44 | - ->mapKey(function ($v): string { |
|
44 | + ->mapKey(function($v): string { |
|
45 | 45 | return $v['COLUMN_NAME']; |
46 | 46 | }) |
47 | - ->map(function ($v) { |
|
47 | + ->map(function($v) { |
|
48 | 48 | $v['length'] = null; |
49 | 49 | if (!isset($v['DATA_TYPE'])) { |
50 | 50 | return $v; |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | default: |
57 | 57 | if (strpos($type, 'char') !== false && strpos($type, '(') !== false) { |
58 | 58 | // extract length from varchar |
59 | - $v['length'] = (int)explode(')', (explode('(', $type)[1] ?? ''))[0]; |
|
59 | + $v['length'] = (int) explode(')', (explode('(', $type)[1] ?? ''))[0]; |
|
60 | 60 | $v['length'] = $v['length'] > 0 ? $v['length'] : null; |
61 | 61 | } |
62 | 62 | break; |
@@ -73,9 +73,9 @@ discard block |
||
73 | 73 | ->query( |
74 | 74 | "SELECT constraint_name FROM user_constraints |
75 | 75 | WHERE table_name = ? AND constraint_type = ?", |
76 | - [ strtoupper($table), 'P' ] |
|
76 | + [strtoupper($table), 'P'] |
|
77 | 77 | )) |
78 | - ->map(function ($v) { |
|
78 | + ->map(function($v) { |
|
79 | 79 | $new = []; |
80 | 80 | foreach ($v as $kk => $vv) { |
81 | 81 | $new[strtoupper($kk)] = $vv; |
@@ -90,9 +90,9 @@ discard block |
||
90 | 90 | ->query( |
91 | 91 | "SELECT column_name FROM user_cons_columns |
92 | 92 | WHERE table_name = ? AND constraint_name = ?", |
93 | - [ strtoupper($table), $pkname ] |
|
93 | + [strtoupper($table), $pkname] |
|
94 | 94 | )) |
95 | - ->map(function ($v) { |
|
95 | + ->map(function($v) { |
|
96 | 96 | $new = []; |
97 | 97 | foreach ($v as $kk => $vv) { |
98 | 98 | $new[strtoupper($kk)] = $vv; |
@@ -124,9 +124,9 @@ discard block |
||
124 | 124 | LEFT JOIN user_cons_columns cc ON cc.CONSTRAINT_NAME = ac.CONSTRAINT_NAME |
125 | 125 | WHERE ac.TABLE_NAME = ? AND ac.CONSTRAINT_TYPE = ? |
126 | 126 | ORDER BY cc.POSITION", |
127 | - [ strtoupper($table), 'R' ] |
|
127 | + [strtoupper($table), 'R'] |
|
128 | 128 | )) |
129 | - ->map(function ($v) { |
|
129 | + ->map(function($v) { |
|
130 | 130 | $new = []; |
131 | 131 | foreach ($v as $kk => $vv) { |
132 | 132 | $new[strtoupper($kk)] = $vv; |
@@ -144,9 +144,9 @@ discard block |
||
144 | 144 | ->query( |
145 | 145 | "SELECT COLUMN_NAME FROM user_cons_columns |
146 | 146 | WHERE CONSTRAINT_NAME = ? ORDER BY POSITION", |
147 | - [ current($data['keymap']) ] |
|
147 | + [current($data['keymap'])] |
|
148 | 148 | )) |
149 | - ->map(function ($v) { |
|
149 | + ->map(function($v) { |
|
150 | 150 | $new = []; |
151 | 151 | foreach ($v as $kk => $vv) { |
152 | 152 | $new[strtoupper($kk)] = $vv; |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | $relname = $data['table']; |
162 | 162 | $cntr = 1; |
163 | 163 | while ($definition->hasRelation($relname) || $definition->getName() == $relname) { |
164 | - $relname = $data['table'] . '_' . (++ $cntr); |
|
164 | + $relname = $data['table'].'_'.(++$cntr); |
|
165 | 165 | } |
166 | 166 | $definition->addRelation( |
167 | 167 | new TableRelation( |
@@ -185,9 +185,9 @@ discard block |
||
185 | 185 | WHERE |
186 | 186 | ac.R_CONSTRAINT_NAME = ? AND ac.CONSTRAINT_TYPE = ? |
187 | 187 | ORDER BY cc.POSITION", |
188 | - [ $pkname, 'R' ] |
|
188 | + [$pkname, 'R'] |
|
189 | 189 | )) |
190 | - ->map(function ($v) { |
|
190 | + ->map(function($v) { |
|
191 | 191 | $new = []; |
192 | 192 | foreach ($v as $kk => $vv) { |
193 | 193 | $new[strtoupper($kk)] = $vv; |
@@ -197,10 +197,10 @@ discard block |
||
197 | 197 | as $relation |
198 | 198 | ) { |
199 | 199 | $relations[$relation['CONSTRAINT_NAME']]['table'] = $relation['TABLE_NAME']; |
200 | - $relations[$relation['CONSTRAINT_NAME']]['keymap'][$primary[(int)$relation['POSITION']-1]] = |
|
200 | + $relations[$relation['CONSTRAINT_NAME']]['keymap'][$primary[(int) $relation['POSITION'] - 1]] = |
|
201 | 201 | $relation['COLUMN_NAME']; |
202 | 202 | } |
203 | - foreach ([ true, false ] as $pivot) { |
|
203 | + foreach ([true, false] as $pivot) { |
|
204 | 204 | foreach ($relations as $data) { |
205 | 205 | $rtable = $this->table($data['table'], true); |
206 | 206 | $columns = []; |
@@ -228,9 +228,9 @@ discard block |
||
228 | 228 | ac.TABLE_NAME = ? AND ac.CONSTRAINT_TYPE = ? AND |
229 | 229 | cc.COLUMN_NAME IN (??) |
230 | 230 | ORDER BY POSITION", |
231 | - [ $data['table'], 'R', $columns ] |
|
231 | + [$data['table'], 'R', $columns] |
|
232 | 232 | )) |
233 | - ->map(function ($v) { |
|
233 | + ->map(function($v) { |
|
234 | 234 | $new = []; |
235 | 235 | foreach ($v as $kk => $vv) { |
236 | 236 | $new[strtoupper($kk)] = $vv; |
@@ -250,9 +250,9 @@ discard block |
||
250 | 250 | ->query( |
251 | 251 | "SELECT COLUMN_NAME FROM user_cons_columns |
252 | 252 | WHERE CONSTRAINT_NAME = ? ORDER BY POSITION", |
253 | - [ current($foreign['keymap']) ] |
|
253 | + [current($foreign['keymap'])] |
|
254 | 254 | )) |
255 | - ->map(function ($v) { |
|
255 | + ->map(function($v) { |
|
256 | 256 | $new = []; |
257 | 257 | foreach ($v as $kk => $vv) { |
258 | 258 | $new[strtoupper($kk)] = $vv; |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | $relname = $foreign['table']; |
268 | 268 | $cntr = 1; |
269 | 269 | while ($definition->hasRelation($relname) || $definition->getName() == $relname) { |
270 | - $relname = $foreign['table'] . '_' . (++ $cntr); |
|
270 | + $relname = $foreign['table'].'_'.(++$cntr); |
|
271 | 271 | } |
272 | 272 | $definition->addRelation( |
273 | 273 | new TableRelation( |
@@ -288,7 +288,7 @@ discard block |
||
288 | 288 | $relname = $data['table']; |
289 | 289 | $cntr = 1; |
290 | 290 | while ($definition->hasRelation($relname) || $definition->getName() == $relname) { |
291 | - $relname = $data['table'] . '_' . (++ $cntr); |
|
291 | + $relname = $data['table'].'_'.(++$cntr); |
|
292 | 292 | } |
293 | 293 | $definition->addRelation( |
294 | 294 | new TableRelation( |
@@ -319,18 +319,18 @@ discard block |
||
319 | 319 | SELECT VIEW_NAME AS TABLE_NAME FROM USER_VIEWS", |
320 | 320 | [] |
321 | 321 | )) |
322 | - ->map(function ($v) { |
|
322 | + ->map(function($v) { |
|
323 | 323 | $new = []; |
324 | 324 | foreach ($v as $kk => $vv) { |
325 | 325 | $new[strtoupper($kk)] = $vv; |
326 | 326 | } |
327 | 327 | return $new; |
328 | 328 | }) |
329 | - ->mapKey(function ($v) { |
|
329 | + ->mapKey(function($v) { |
|
330 | 330 | return strtolower($v['TABLE_NAME']); |
331 | 331 | }) |
332 | 332 | ->pluck('TABLE_NAME') |
333 | - ->map(function ($v) { |
|
333 | + ->map(function($v) { |
|
334 | 334 | return $this->table($v)->toLowerCase(); |
335 | 335 | }) |
336 | 336 | ->toArray(); |
@@ -76,7 +76,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 = []; |
@@ -60,11 +60,11 @@ discard block |
||
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 |
||
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 | ); |
@@ -37,7 +37,7 @@ discard block |
||
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 |
||
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 | ); |
@@ -37,7 +37,7 @@ discard block |
||
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 |
||
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 | ); |
@@ -57,8 +57,8 @@ |
||
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 | { |