@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | ) { |
| 95 | 95 | $expr->type = $token->keyword; |
| 96 | 96 | } elseif (($token->type === Token::TYPE_OPERATOR) && ($token->value === ',')) { |
| 97 | - if (! empty($expr->expr)) { |
|
| 97 | + if (!empty($expr->expr)) { |
|
| 98 | 98 | $ret[] = $expr; |
| 99 | 99 | } |
| 100 | 100 | |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | } |
| 108 | 108 | |
| 109 | 109 | // Last iteration was not processed. |
| 110 | - if (! empty($expr->expr)) { |
|
| 110 | + if (!empty($expr->expr)) { |
|
| 111 | 111 | $ret[] = $expr; |
| 112 | 112 | } |
| 113 | 113 | |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | */ |
| 27 | 27 | public static function getForeignKeys($statement) |
| 28 | 28 | { |
| 29 | - if (empty($statement->fields) || (! is_array($statement->fields)) || (! $statement->options->has('TABLE'))) { |
|
| 29 | + if (empty($statement->fields) || (!is_array($statement->fields)) || (!$statement->options->has('TABLE'))) { |
|
| 30 | 30 | return []; |
| 31 | 31 | } |
| 32 | 32 | |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | |
| 40 | 40 | $columns = []; |
| 41 | 41 | foreach ($field->key->columns as $column) { |
| 42 | - if (! isset($column['name'])) { |
|
| 42 | + if (!isset($column['name'])) { |
|
| 43 | 43 | continue; |
| 44 | 44 | } |
| 45 | 45 | |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | 'index_list' => $columns, |
| 52 | 52 | ]; |
| 53 | 53 | |
| 54 | - if (! empty($field->references)) { |
|
| 54 | + if (!empty($field->references)) { |
|
| 55 | 55 | $tmp['ref_db_name'] = $field->references->table->database; |
| 56 | 56 | $tmp['ref_table_name'] = $field->references->table->table; |
| 57 | 57 | $tmp['ref_index_list'] = $field->references->columns; |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | */ |
| 85 | 85 | public static function getFields($statement) |
| 86 | 86 | { |
| 87 | - if (empty($statement->fields) || (! is_array($statement->fields)) || (! $statement->options->has('TABLE'))) { |
|
| 87 | + if (empty($statement->fields) || (!is_array($statement->fields)) || (!$statement->options->has('TABLE'))) { |
|
| 88 | 88 | return []; |
| 89 | 89 | } |
| 90 | 90 | |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | 'timestamp_not_null' => false, |
| 102 | 102 | ]; |
| 103 | 103 | |
| 104 | - if (! $field->options) { |
|
| 104 | + if (!$field->options) { |
|
| 105 | 105 | continue; |
| 106 | 106 | } |
| 107 | 107 | |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | |
| 129 | 129 | $option = $field->options->has('AS'); |
| 130 | 130 | |
| 131 | - if (! $option) { |
|
| 131 | + if (!$option) { |
|
| 132 | 132 | continue; |
| 133 | 133 | } |
| 134 | 134 | |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | $this->byteIdx = 0; |
| 191 | 191 | $this->charIdx = 0; |
| 192 | 192 | $this->byteLen = mb_strlen($str, '8bit'); |
| 193 | - if (! mb_check_encoding($str, 'UTF-8')) { |
|
| 193 | + if (!mb_check_encoding($str, 'UTF-8')) { |
|
| 194 | 194 | $this->charLen = 0; |
| 195 | 195 | } else { |
| 196 | 196 | $this->charLen = mb_strlen($str, 'UTF-8'); |
@@ -298,7 +298,7 @@ discard block |
||
| 298 | 298 | // Use the default ASCII map as queries are mostly ASCII chars |
| 299 | 299 | // ord($byte) has a performance cost |
| 300 | 300 | |
| 301 | - if (! isset(static::$asciiMap[$byte])) { |
|
| 301 | + if (!isset(static::$asciiMap[$byte])) { |
|
| 302 | 302 | // Complete the cache with missing items |
| 303 | 303 | static::$asciiMap[$byte] = ord($byte); |
| 304 | 304 | } |
@@ -417,7 +417,7 @@ discard block |
||
| 417 | 417 | public function build() |
| 418 | 418 | { |
| 419 | 419 | $fields = ''; |
| 420 | - if (! empty($this->fields)) { |
|
| 420 | + if (!empty($this->fields)) { |
|
| 421 | 421 | if (is_array($this->fields)) { |
| 422 | 422 | $fields = CreateDefinition::build($this->fields) . ' '; |
| 423 | 423 | } elseif ($this->fields instanceof ArrayObj) { |
@@ -449,23 +449,23 @@ discard block |
||
| 449 | 449 | |
| 450 | 450 | $partition = ''; |
| 451 | 451 | |
| 452 | - if (! empty($this->partitionBy)) { |
|
| 452 | + if (!empty($this->partitionBy)) { |
|
| 453 | 453 | $partition .= "\nPARTITION BY " . $this->partitionBy; |
| 454 | 454 | } |
| 455 | 455 | |
| 456 | - if (! empty($this->partitionsNum)) { |
|
| 456 | + if (!empty($this->partitionsNum)) { |
|
| 457 | 457 | $partition .= "\nPARTITIONS " . $this->partitionsNum; |
| 458 | 458 | } |
| 459 | 459 | |
| 460 | - if (! empty($this->subpartitionBy)) { |
|
| 460 | + if (!empty($this->subpartitionBy)) { |
|
| 461 | 461 | $partition .= "\nSUBPARTITION BY " . $this->subpartitionBy; |
| 462 | 462 | } |
| 463 | 463 | |
| 464 | - if (! empty($this->subpartitionsNum)) { |
|
| 464 | + if (!empty($this->subpartitionsNum)) { |
|
| 465 | 465 | $partition .= "\nSUBPARTITIONS " . $this->subpartitionsNum; |
| 466 | 466 | } |
| 467 | 467 | |
| 468 | - if (! empty($this->partitions)) { |
|
| 468 | + if (!empty($this->partitions)) { |
|
| 469 | 469 | $partition .= "\n" . PartitionDefinition::build($this->partitions); |
| 470 | 470 | } |
| 471 | 471 | |
@@ -487,7 +487,7 @@ discard block |
||
| 487 | 487 | . OptionsArray::build($this->options) . ' ' |
| 488 | 488 | . Expression::build($this->name) . ' ' |
| 489 | 489 | . $fields . ' AS ' . $builtStatement |
| 490 | - . (! empty($this->body) ? TokensList::build($this->body) : '') . ' ' |
|
| 490 | + . (!empty($this->body) ? TokensList::build($this->body) : '') . ' ' |
|
| 491 | 491 | . OptionsArray::build($this->entityOptions); |
| 492 | 492 | } elseif ($this->options->has('TRIGGER')) { |
| 493 | 493 | return 'CREATE ' |
@@ -541,7 +541,7 @@ discard block |
||
| 541 | 541 | ] |
| 542 | 542 | ); |
| 543 | 543 | |
| 544 | - if (! isset($this->name) || ($this->name === '')) { |
|
| 544 | + if (!isset($this->name) || ($this->name === '')) { |
|
| 545 | 545 | $parser->error('The name of the entity was expected.', $list->tokens[$list->idx]); |
| 546 | 546 | } else { |
| 547 | 547 | ++$list->idx; // Skipping field. |
@@ -657,7 +657,7 @@ discard block |
||
| 657 | 657 | $token = $list->getNextOfType(Token::TYPE_NUMBER); |
| 658 | 658 | --$list->idx; // `getNextOfType` also advances one position. |
| 659 | 659 | $this->subpartitionsNum = $token->value; |
| 660 | - } elseif (! empty($field)) { |
|
| 660 | + } elseif (!empty($field)) { |
|
| 661 | 661 | /* |
| 662 | 662 | * Handling the content of `PARTITION BY` and `SUBPARTITION BY`. |
| 663 | 663 | */ |
@@ -686,7 +686,7 @@ discard block |
||
| 686 | 686 | $field = null; |
| 687 | 687 | } |
| 688 | 688 | } elseif (($token->type === Token::TYPE_OPERATOR) && ($token->value === '(')) { |
| 689 | - if (! empty($this->partitionBy)) { |
|
| 689 | + if (!empty($this->partitionBy)) { |
|
| 690 | 690 | $this->partitions = ArrayObj::parse( |
| 691 | 691 | $parser, |
| 692 | 692 | $list, |
@@ -22,7 +22,6 @@ discard block |
||
| 22 | 22 | |
| 23 | 23 | /** |
| 24 | 24 | * `WITH` statement. |
| 25 | - |
|
| 26 | 25 | * WITH [RECURSIVE] query_name [ (column_name [,...]) ] AS (SELECT ...) [, ...] |
| 27 | 26 | */ |
| 28 | 27 | final class WithStatement extends Statement |
@@ -263,9 +262,9 @@ discard block |
||
| 263 | 262 | |
| 264 | 263 | // 5 is the only valid end state |
| 265 | 264 | if ($state !== 5) { |
| 266 | - /** |
|
| 267 | - * Token parsed at this moment. |
|
| 268 | - */ |
|
| 265 | + /** |
|
| 266 | + * Token parsed at this moment. |
|
| 267 | + */ |
|
| 269 | 268 | $token = $list->tokens[$list->idx]; |
| 270 | 269 | |
| 271 | 270 | $parser->error('Unexpected end of the WITH CTE.', $token); |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | break; |
| 134 | 134 | } |
| 135 | 135 | } elseif ($state === 2) { |
| 136 | - if (! ($token->type === Token::TYPE_KEYWORD && $token->keyword === 'AS')) { |
|
| 136 | + if (!($token->type === Token::TYPE_KEYWORD && $token->keyword === 'AS')) { |
|
| 137 | 137 | $parser->error('AS keyword was expected.', $token); |
| 138 | 138 | break; |
| 139 | 139 | } |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | $list->idx++; // Ignore the current token |
| 146 | 146 | $nextKeyword = $list->getNext(); |
| 147 | 147 | |
| 148 | - if (! ($token->value === '(' && ($nextKeyword && $nextKeyword->value === 'SELECT'))) { |
|
| 148 | + if (!($token->value === '(' && ($nextKeyword && $nextKeyword->value === 'SELECT'))) { |
|
| 149 | 149 | $parser->error('Subquery of the CTE was expected.', $token); |
| 150 | 150 | $list->idx = $idxBeforeGetNext; |
| 151 | 151 | break; |
@@ -313,7 +313,7 @@ discard block |
||
| 313 | 313 | } |
| 314 | 314 | |
| 315 | 315 | ++$list->idx; |
| 316 | - if (! isset($list->tokens[$list->idx])) { |
|
| 316 | + if (!isset($list->tokens[$list->idx])) { |
|
| 317 | 317 | break; |
| 318 | 318 | } |
| 319 | 319 | |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | $this->assertEquals([ |
| 43 | 43 | Token::TYPE_KEYWORD | Token::FLAG_KEYWORD_RESERVED => [ |
| 44 | 44 | 8 => ['RESERVED'], |
| 45 | - 9 => ['RESERVED2','RESERVED3','RESERVED4','RESERVED5'], |
|
| 45 | + 9 => ['RESERVED2', 'RESERVED3', 'RESERVED4', 'RESERVED5'], |
|
| 46 | 46 | ], |
| 47 | 47 | Token::TYPE_KEYWORD | Token::FLAG_KEYWORD_FUNCTION => [8 => ['FUNCTION']], |
| 48 | 48 | Token::TYPE_KEYWORD | Token::FLAG_KEYWORD_DATA_TYPE => [8 => ['DATATYPE']], |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | { |
| 27 | 27 | $str1 = new UtfString($this->testContents); |
| 28 | 28 | for ($i = 0; $i < $str1->length(); $i++) { |
| 29 | - $str1[$i];// Make offset offsetGet work |
|
| 29 | + $str1[$i]; // Make offset offsetGet work |
|
| 30 | 30 | } |
| 31 | 31 | } |
| 32 | 32 | |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | foreach ($parser->statements as $statement) { |
| 65 | 65 | if ($statement instanceof TransactionStatement) { |
| 66 | 66 | foreach ($statement->statements as $transactionStatement) { |
| 67 | - if (! $transactionStatement instanceof SetStatement) { |
|
| 67 | + if (!$transactionStatement instanceof SetStatement) { |
|
| 68 | 68 | continue; |
| 69 | 69 | } |
| 70 | 70 | |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | continue; |
| 75 | 75 | } |
| 76 | 76 | |
| 77 | - if (! $statement instanceof SetStatement) { |
|
| 77 | + if (!$statement instanceof SetStatement) { |
|
| 78 | 78 | continue; |
| 79 | 79 | } |
| 80 | 80 | |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | */ |
| 142 | 142 | public function getPreviousOfType($type) |
| 143 | 143 | { |
| 144 | - if (! is_array($type)) { |
|
| 144 | + if (!is_array($type)) { |
|
| 145 | 145 | $type = [$type]; |
| 146 | 146 | } |
| 147 | 147 | |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | */ |
| 164 | 164 | public function getNextOfType($type) |
| 165 | 165 | { |
| 166 | - if (! is_array($type)) { |
|
| 166 | + if (!is_array($type)) { |
|
| 167 | 167 | $type = [$type]; |
| 168 | 168 | } |
| 169 | 169 | |