@@ -57,7 +57,7 @@ |
||
57 | 57 | */ |
58 | 58 | public function identifier($identifier) |
59 | 59 | { |
60 | - return $identifier == '*' ? '*' : '`' . str_replace('`', '``', $identifier) . '`'; |
|
60 | + return $identifier == '*' ? '*' : '`'.str_replace('`', '``', $identifier).'`'; |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | /** |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | } |
197 | 197 | |
198 | 198 | return "$statement CONSTRAINT {$this->enumConstraint(true, true)} " |
199 | - . "CHECK ({$this->getName(true)} IN (" . implode(', ', $enumValues) . '))'; |
|
199 | + . "CHECK ({$this->getName(true)} IN (".implode(', ', $enumValues).'))'; |
|
200 | 200 | } |
201 | 201 | |
202 | 202 | /** |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | } |
241 | 241 | |
242 | 242 | if ($original->abstractType() == 'enum' && !empty($this->enumConstraint)) { |
243 | - $operations[] = 'DROP CONSTRAINT ' . $this->enumConstraint(true); |
|
243 | + $operations[] = 'DROP CONSTRAINT '.$this->enumConstraint(true); |
|
244 | 244 | } |
245 | 245 | |
246 | 246 | if ($original->defaultValue != $this->defaultValue) { |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | |
254 | 254 | if ($original->nullable != $this->nullable) { |
255 | 255 | $operations[] = "ALTER COLUMN {$this->getName(true)} " |
256 | - . (!$this->nullable ? 'SET' : 'DROP') . ' NOT NULL'; |
|
256 | + . (!$this->nullable ? 'SET' : 'DROP').' NOT NULL'; |
|
257 | 257 | } |
258 | 258 | |
259 | 259 | if ($this->abstractType() == 'enum') { |
@@ -263,7 +263,7 @@ discard block |
||
263 | 263 | } |
264 | 264 | |
265 | 265 | $operations[] = "ADD CONSTRAINT {$this->enumConstraint(true)} " |
266 | - . "CHECK ({$this->getName(true)} IN (" . implode(', ', $enumValues) . '))'; |
|
266 | + . "CHECK ({$this->getName(true)} IN (".implode(', ', $enumValues).'))'; |
|
267 | 267 | } |
268 | 268 | |
269 | 269 | return $operations; |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | */ |
328 | 328 | protected function prepareEnum() |
329 | 329 | { |
330 | - return '(' . $this->size . ')'; |
|
330 | + return '('.$this->size.')'; |
|
331 | 331 | } |
332 | 332 | |
333 | 333 | /** |
@@ -343,10 +343,10 @@ discard block |
||
343 | 343 | { |
344 | 344 | if (empty($this->enumConstraint)) { |
345 | 345 | if ($temporary) { |
346 | - return $this->table->getName() . '_' . $this->getName() . '_enum'; |
|
346 | + return $this->table->getName().'_'.$this->getName().'_enum'; |
|
347 | 347 | } |
348 | 348 | |
349 | - $this->enumConstraint = $this->table->getName() . '_' . $this->getName() . '_enum_' . uniqid(); |
|
349 | + $this->enumConstraint = $this->table->getName().'_'.$this->getName().'_enum_'.uniqid(); |
|
350 | 350 | } |
351 | 351 | |
352 | 352 | return $quote ? $this->table->driver()->identifier($this->enumConstraint) : $this->enumConstraint; |
@@ -377,7 +377,7 @@ discard block |
||
377 | 377 | private function resolveNativeEnum() |
378 | 378 | { |
379 | 379 | $range = $this->table->driver()->query( |
380 | - 'SELECT enum_range(NULL::' . $this->type . ')' |
|
380 | + 'SELECT enum_range(NULL::'.$this->type.')' |
|
381 | 381 | )->fetchColumn(0); |
382 | 382 | |
383 | 383 | $this->enumValues = explode(',', substr($range, 1, -1)); |
@@ -403,7 +403,7 @@ discard block |
||
403 | 403 | . "WHERE conrelid = ? AND contype = 'c' AND (consrc LIKE ? OR consrc LIKE ?)"; |
404 | 404 | |
405 | 405 | $constraints = $this->table->driver()->query( |
406 | - $query, [$tableOID, '(' . $this->name . '%', '("' . $this->name . '%'] |
|
406 | + $query, [$tableOID, '('.$this->name.'%', '("'.$this->name.'%'] |
|
407 | 407 | ); |
408 | 408 | |
409 | 409 | foreach ($constraints as $constraint) { |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | $table, |
25 | 25 | $columns, |
26 | 26 | $rowsets |
27 | - ) . (!empty($primaryKey) ? ' RETURNING ' . $this->quote($primaryKey) : ''); |
|
27 | + ).(!empty($primaryKey) ? ' RETURNING '.$this->quote($primaryKey) : ''); |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | /** |
@@ -36,6 +36,6 @@ discard block |
||
36 | 36 | return ''; |
37 | 37 | } |
38 | 38 | |
39 | - return 'DISTINCT' . (is_string($distinct) ? '(' . $this->quote($distinct) . ')' : ''); |
|
39 | + return 'DISTINCT'.(is_string($distinct) ? '('.$this->quote($distinct).')' : ''); |
|
40 | 40 | } |
41 | 41 | } |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | public function getPrimary($table) |
118 | 118 | { |
119 | 119 | if (!empty($this->memory) && empty($this->primaryKeys)) { |
120 | - $this->primaryKeys = (array)$this->memory->loadData($this->getSource() . '-primary'); |
|
120 | + $this->primaryKeys = (array)$this->memory->loadData($this->getSource().'-primary'); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | if (!empty($this->primaryKeys) && array_key_exists($table, $this->primaryKeys)) { |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | |
141 | 141 | //Caching |
142 | 142 | if (!empty($this->memory)) { |
143 | - $this->memory->saveData($this->getSource() . '-primary', $this->primaryKeys); |
|
143 | + $this->memory->saveData($this->getSource().'-primary', $this->primaryKeys); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | return $this->primaryKeys[$table]; |
@@ -37,7 +37,7 @@ |
||
37 | 37 | ); |
38 | 38 | } |
39 | 39 | |
40 | - if ($primary = $driver->getPrimary($this->database->getPrefix() . $this->table)) { |
|
40 | + if ($primary = $driver->getPrimary($this->database->getPrefix().$this->table)) { |
|
41 | 41 | $this->logger()->debug( |
42 | 42 | "Primary key '{sequence}' automatically resolved for table '{table}'.", |
43 | 43 | [ |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | } |
236 | 236 | |
237 | 237 | $type = "ALTER COLUMN {$this->getName(true)} varchar($enumSize)"; |
238 | - $operations[] = $type . ' ' . ($this->nullable ? 'NULL' : 'NOT NULL'); |
|
238 | + $operations[] = $type.' '.($this->nullable ? 'NULL' : 'NOT NULL'); |
|
239 | 239 | } else { |
240 | 240 | $type = "ALTER COLUMN {$this->getName(true)} {$this->type}"; |
241 | 241 | |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | $type .= "($this->precision, $this->scale)"; |
248 | 248 | } |
249 | 249 | |
250 | - $operations[] = $type . ' ' . ($this->nullable ? 'NULL' : 'NOT NULL'); |
|
250 | + $operations[] = $type.' '.($this->nullable ? 'NULL' : 'NOT NULL'); |
|
251 | 251 | } |
252 | 252 | } |
253 | 253 | |
@@ -433,7 +433,7 @@ discard block |
||
433 | 433 | |
434 | 434 | //We made some assumptions here... |
435 | 435 | if (preg_match_all( |
436 | - '/' . $name . '=[\']?([^\']+)[\']?/i', |
|
436 | + '/'.$name.'=[\']?([^\']+)[\']?/i', |
|
437 | 437 | $checkConstraint['definition'], |
438 | 438 | $matches |
439 | 439 | )) { |
@@ -453,6 +453,6 @@ discard block |
||
453 | 453 | */ |
454 | 454 | private function generateName($type) |
455 | 455 | { |
456 | - return $this->table->getName() . '_' . $this->getName() . "_{$type}_" . uniqid(); |
|
456 | + return $this->table->getName().'_'.$this->getName()."_{$type}_".uniqid(); |
|
457 | 457 | } |
458 | 458 | } |
@@ -66,7 +66,7 @@ |
||
66 | 66 | if ($column->getName() != $initial->getName()) { |
67 | 67 | //Renaming is separate operation |
68 | 68 | $this->run("sp_rename ?, ?, 'COLUMN'", [ |
69 | - $table->getName() . '.' . $initial->getName(), |
|
69 | + $table->getName().'.'.$initial->getName(), |
|
70 | 70 | $column->getName() |
71 | 71 | ]); |
72 | 72 | } |
@@ -137,7 +137,7 @@ |
||
137 | 137 | $offset = $offset + 1; |
138 | 138 | |
139 | 139 | if (!empty($limit)) { |
140 | - $statement .= "BETWEEN {$offset} AND " . ($offset + $limit - 1); |
|
140 | + $statement .= "BETWEEN {$offset} AND ".($offset + $limit - 1); |
|
141 | 141 | } else { |
142 | 142 | $statement .= ">= {$offset}"; |
143 | 143 | } |
@@ -84,7 +84,7 @@ |
||
84 | 84 | */ |
85 | 85 | public function identifier($identifier) |
86 | 86 | { |
87 | - return $identifier == '*' ? '*' : '[' . str_replace('[', '[[', $identifier) . ']'; |
|
87 | + return $identifier == '*' ? '*' : '['.str_replace('[', '[[', $identifier).']'; |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | /** |