@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | |
| 109 | 109 | if ($lastOption === null) { |
| 110 | 110 | $upper = strtoupper($token->token); |
| 111 | - if (! isset($options[$upper])) { |
|
| 111 | + if (!isset($options[$upper])) { |
|
| 112 | 112 | // There is no option to be processed. |
| 113 | 113 | break; |
| 114 | 114 | } |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | } |
| 146 | 146 | |
| 147 | 147 | if ($state === 0) { |
| 148 | - if (! is_array($lastOption)) { |
|
| 148 | + if (!is_array($lastOption)) { |
|
| 149 | 149 | // This is a just keyword option without any value. |
| 150 | 150 | // This is the beginning and the end of it. |
| 151 | 151 | $ret->options[$lastOptionId] = $token->value; |
@@ -222,7 +222,7 @@ discard block |
||
| 222 | 222 | $ret->options[$lastOptionId]['expr'] .= $token->token; |
| 223 | 223 | |
| 224 | 224 | if ( |
| 225 | - ! (($token->token === '(') && ($brackets === 1) |
|
| 225 | + !(($token->token === '(') && ($brackets === 1) |
|
| 226 | 226 | || (($token->token === ')') && ($brackets === 0))) |
| 227 | 227 | ) { |
| 228 | 228 | // First pair of brackets is being skipped. |
@@ -274,12 +274,12 @@ discard block |
||
| 274 | 274 | |
| 275 | 275 | $options = []; |
| 276 | 276 | foreach ($this->options as $option) { |
| 277 | - if (! is_array($option)) { |
|
| 277 | + if (!is_array($option)) { |
|
| 278 | 278 | $options[] = $option; |
| 279 | 279 | } else { |
| 280 | 280 | $options[] = $option['name'] |
| 281 | - . (! empty($option['equals']) ? '=' : ' ') |
|
| 282 | - . (! empty($option['expr']) ? $option['expr'] : $option['value']); |
|
| 281 | + . (!empty($option['equals']) ? '=' : ' ') |
|
| 282 | + . (!empty($option['expr']) ? $option['expr'] : $option['value']); |
|
| 283 | 283 | } |
| 284 | 284 | } |
| 285 | 285 | |
@@ -299,10 +299,10 @@ discard block |
||
| 299 | 299 | { |
| 300 | 300 | foreach ($this->options as $option) { |
| 301 | 301 | if (is_array($option)) { |
| 302 | - if (! strcasecmp($key, $option['name'])) { |
|
| 302 | + if (!strcasecmp($key, $option['name'])) { |
|
| 303 | 303 | return $getExpr ? $option['expr'] : $option['value']; |
| 304 | 304 | } |
| 305 | - } elseif (! strcasecmp($key, $option)) { |
|
| 305 | + } elseif (!strcasecmp($key, $option)) { |
|
| 306 | 306 | return true; |
| 307 | 307 | } |
| 308 | 308 | } |
@@ -321,12 +321,12 @@ discard block |
||
| 321 | 321 | { |
| 322 | 322 | foreach ($this->options as $idx => $option) { |
| 323 | 323 | if (is_array($option)) { |
| 324 | - if (! strcasecmp($key, $option['name'])) { |
|
| 324 | + if (!strcasecmp($key, $option['name'])) { |
|
| 325 | 325 | unset($this->options[$idx]); |
| 326 | 326 | |
| 327 | 327 | return true; |
| 328 | 328 | } |
| 329 | - } elseif (! strcasecmp($key, $option)) { |
|
| 329 | + } elseif (!strcasecmp($key, $option)) { |
|
| 330 | 330 | unset($this->options[$idx]); |
| 331 | 331 | |
| 332 | 332 | return true; |
@@ -43,7 +43,7 @@ |
||
| 43 | 43 | $this->assertEquals([ |
| 44 | 44 | TokenType::Keyword->value | Token::FLAG_KEYWORD_RESERVED => [ |
| 45 | 45 | 8 => ['RESERVED'], |
| 46 | - 9 => ['RESERVED2','RESERVED3','RESERVED4','RESERVED5'], |
|
| 46 | + 9 => ['RESERVED2', 'RESERVED3', 'RESERVED4', 'RESERVED5'], |
|
| 47 | 47 | ], |
| 48 | 48 | TokenType::Keyword->value | Token::FLAG_KEYWORD_FUNCTION => [8 => ['FUNCTION']], |
| 49 | 49 | TokenType::Keyword->value | Token::FLAG_KEYWORD_DATA_TYPE => [8 => ['DATATYPE']], |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | |
| 200 | 200 | // Handle optional AS keyword before alias |
| 201 | 201 | if ($token->type === TokenType::Keyword && $token->keyword === 'AS') { |
| 202 | - if ($asFound || ! empty($ret->alias)) { |
|
| 202 | + if ($asFound || !empty($ret->alias)) { |
|
| 203 | 203 | $parser->error('Potential duplicate alias of CASE expression.', $token); |
| 204 | 204 | break; |
| 205 | 205 | } |
@@ -221,11 +221,11 @@ discard block |
||
| 221 | 221 | if ( |
| 222 | 222 | $asFound |
| 223 | 223 | || $token->type === TokenType::String |
| 224 | - || ($token->type === TokenType::Symbol && ! $token->flags & Token::FLAG_SYMBOL_VARIABLE) |
|
| 224 | + || ($token->type === TokenType::Symbol && !$token->flags & Token::FLAG_SYMBOL_VARIABLE) |
|
| 225 | 225 | || $token->type === TokenType::None |
| 226 | 226 | ) { |
| 227 | 227 | // An alias is expected (the keyword `AS` was previously found). |
| 228 | - if (! empty($ret->alias)) { |
|
| 228 | + if (!empty($ret->alias)) { |
|
| 229 | 229 | $parser->error('An alias was previously found.', $token); |
| 230 | 230 | break; |
| 231 | 231 | } |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | { |
| 79 | 79 | $this->str = $str; |
| 80 | 80 | $this->byteLen = mb_strlen($str, '8bit'); |
| 81 | - if (! mb_check_encoding($str, 'UTF-8')) { |
|
| 81 | + if (!mb_check_encoding($str, 'UTF-8')) { |
|
| 82 | 82 | $this->charLen = 0; |
| 83 | 83 | } else { |
| 84 | 84 | $this->charLen = mb_strlen($str, 'UTF-8'); |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | * |
| 101 | 101 | * @param int $offset the offset to be returned |
| 102 | 102 | */ |
| 103 | - public function offsetGet(mixed $offset): string|null |
|
| 103 | + public function offsetGet(mixed $offset): string | null |
|
| 104 | 104 | { |
| 105 | 105 | // This function moves the internal byte and character pointer to the requested offset. |
| 106 | 106 | // This function is part of hot code so the aim is to do the following |
@@ -435,7 +435,7 @@ discard block |
||
| 435 | 435 | // The options of a clause should stay on the same line and everything that follows. |
| 436 | 436 | if ( |
| 437 | 437 | $this->options['parts_newline'] |
| 438 | - && ! $formattedOptions |
|
| 438 | + && !$formattedOptions |
|
| 439 | 439 | && empty(self::$inlineClauses[$lastClause]) |
| 440 | 440 | && ( |
| 441 | 441 | $curr->type !== TokenType::Keyword |
@@ -492,7 +492,7 @@ discard block |
||
| 492 | 492 | end($blocksLineEndings) === true |
| 493 | 493 | || ( |
| 494 | 494 | empty(self::$inlineClauses[$lastClause]) |
| 495 | - && ! $shortGroup |
|
| 495 | + && !$shortGroup |
|
| 496 | 496 | && $this->options['parts_newline'] |
| 497 | 497 | ) |
| 498 | 498 | ) { |
@@ -528,7 +528,7 @@ discard block |
||
| 528 | 528 | $lineEnded = false; |
| 529 | 529 | } elseif ( |
| 530 | 530 | $prev->keyword === 'DELIMITER' |
| 531 | - || ! ( |
|
| 531 | + || !( |
|
| 532 | 532 | ($prev->type === TokenType::Operator && ($prev->value === '.' || $prev->value === '(')) |
| 533 | 533 | // No space after . ( |
| 534 | 534 | || ($curr->type === TokenType::Operator |
@@ -643,13 +643,13 @@ discard block |
||
| 643 | 643 | |
| 644 | 644 | foreach ($this->options['formats'] as $format) { |
| 645 | 645 | if ( |
| 646 | - $token->type->value !== $format['type'] || ! (($token->flags & $format['flags']) === $format['flags']) |
|
| 646 | + $token->type->value !== $format['type'] || !(($token->flags & $format['flags']) === $format['flags']) |
|
| 647 | 647 | ) { |
| 648 | 648 | continue; |
| 649 | 649 | } |
| 650 | 650 | |
| 651 | 651 | // Running transformation function. |
| 652 | - if (! empty($format['function'])) { |
|
| 652 | + if (!empty($format['function'])) { |
|
| 653 | 653 | $func = $format['function']; |
| 654 | 654 | $text = $func($text); |
| 655 | 655 | } |
@@ -758,7 +758,7 @@ discard block |
||
| 758 | 758 | * |
| 759 | 759 | * @psalm-return 1|2|false |
| 760 | 760 | */ |
| 761 | - public static function isClause(Token $token): int|false |
|
| 761 | + public static function isClause(Token $token): int | false |
|
| 762 | 762 | { |
| 763 | 763 | if ( |
| 764 | 764 | ($token->type === TokenType::Keyword && isset(Parser::STATEMENT_PARSERS[$token->keyword])) |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | */ |
| 31 | 31 | public static function getForeignKeys(CreateStatement $statement): array |
| 32 | 32 | { |
| 33 | - if (empty($statement->fields) || (! is_array($statement->fields)) || (! $statement->options->has('TABLE'))) { |
|
| 33 | + if (empty($statement->fields) || (!is_array($statement->fields)) || (!$statement->options->has('TABLE'))) { |
|
| 34 | 34 | return []; |
| 35 | 35 | } |
| 36 | 36 | |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | |
| 44 | 44 | $columns = []; |
| 45 | 45 | foreach ($field->key->columns as $column) { |
| 46 | - if (! isset($column['name'])) { |
|
| 46 | + if (!isset($column['name'])) { |
|
| 47 | 47 | continue; |
| 48 | 48 | } |
| 49 | 49 | |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | 'index_list' => $columns, |
| 56 | 56 | ]; |
| 57 | 57 | |
| 58 | - if (! empty($field->references)) { |
|
| 58 | + if (!empty($field->references)) { |
|
| 59 | 59 | $tmp['ref_db_name'] = $field->references->table->database; |
| 60 | 60 | $tmp['ref_table_name'] = $field->references->table->table; |
| 61 | 61 | $tmp['ref_index_list'] = $field->references->columns; |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | */ |
| 97 | 97 | public static function getFields(CreateStatement $statement): array |
| 98 | 98 | { |
| 99 | - if (empty($statement->fields) || (! is_array($statement->fields)) || (! $statement->options->has('TABLE'))) { |
|
| 99 | + if (empty($statement->fields) || (!is_array($statement->fields)) || (!$statement->options->has('TABLE'))) { |
|
| 100 | 100 | return []; |
| 101 | 101 | } |
| 102 | 102 | |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | 'timestamp_not_null' => false, |
| 114 | 114 | ]; |
| 115 | 115 | |
| 116 | - if (! $field->options) { |
|
| 116 | + if (!$field->options) { |
|
| 117 | 117 | continue; |
| 118 | 118 | } |
| 119 | 119 | |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | |
| 141 | 141 | $option = $field->options->has('AS'); |
| 142 | 142 | |
| 143 | - if (! $option) { |
|
| 143 | + if (!$option) { |
|
| 144 | 144 | continue; |
| 145 | 145 | } |
| 146 | 146 | |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | * @param int|string $rowCount the row count |
| 34 | 34 | * @param int|string $offset the offset |
| 35 | 35 | */ |
| 36 | - public function __construct(int|string $rowCount = 0, int|string $offset = 0) |
|
| 36 | + public function __construct(int | string $rowCount = 0, int | string $offset = 0) |
|
| 37 | 37 | { |
| 38 | 38 | $this->rowCount = $rowCount; |
| 39 | 39 | $this->offset = $offset; |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | |
| 88 | 88 | // Skip if not a number or a bind parameter (?) |
| 89 | 89 | if ( |
| 90 | - ! ($token->type === TokenType::Number |
|
| 90 | + !($token->type === TokenType::Number |
|
| 91 | 91 | || ($token->type === TokenType::Symbol && ($token->flags & Token::FLAG_SYMBOL_PARAMETER))) |
| 92 | 92 | ) { |
| 93 | 93 | break; |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | * @param string|null $name the name of the function to be called |
| 35 | 35 | * @param string[]|ArrayObj|null $parameters the parameters of this function |
| 36 | 36 | */ |
| 37 | - public function __construct(string|null $name = null, array|ArrayObj|null $parameters = null) |
|
| 37 | + public function __construct(string | null $name = null, array | ArrayObj | null $parameters = null) |
|
| 38 | 38 | { |
| 39 | 39 | $this->name = $name; |
| 40 | 40 | if (is_array($parameters)) { |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | if ($token->type === TokenType::Operator && $token->value === '(') { |
| 88 | 88 | --$list->idx; // ArrayObj needs to start with `(` |
| 89 | 89 | $state = 1; |
| 90 | - continue;// do not add this token to the name |
|
| 90 | + continue; // do not add this token to the name |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | $ret->name .= $token->value; |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | * @param string $inOut parameter's directional type (IN / OUT or None) |
| 45 | 45 | * @param DataType $type parameter's type |
| 46 | 46 | */ |
| 47 | - public function __construct(string|null $name = null, string|null $inOut = null, DataType|null $type = null) |
|
| 47 | + public function __construct(string | null $name = null, string | null $inOut = null, DataType | null $type = null) |
|
| 48 | 48 | { |
| 49 | 49 | $this->name = $name; |
| 50 | 50 | $this->inOut = $inOut; |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | public function build(): string |
| 143 | 143 | { |
| 144 | 144 | $tmp = ''; |
| 145 | - if (! empty($this->inOut)) { |
|
| 145 | + if (!empty($this->inOut)) { |
|
| 146 | 146 | $tmp .= $this->inOut . ' '; |
| 147 | 147 | } |
| 148 | 148 | |