@@ -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 | |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | // The code below extracts only the relevant information. |
| 84 | 84 | |
| 85 | 85 | // Extracting lexer's errors. |
| 86 | - if (! empty($lexer->errors)) { |
|
| 86 | + if (!empty($lexer->errors)) { |
|
| 87 | 87 | /** @var LexerException $err */ |
| 88 | 88 | foreach ($lexer->errors as $err) { |
| 89 | 89 | $lexerErrors[] = [ |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | // Extracting parser's errors. |
| 101 | - if (! empty($parser->errors)) { |
|
| 101 | + if (!empty($parser->errors)) { |
|
| 102 | 102 | /** @var ParserException $err */ |
| 103 | 103 | foreach ($parser->errors as $err) { |
| 104 | 104 | $parserErrors[] = [ |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | public static function build($type, $input, $output, $debug = null, $ansi = false) |
| 139 | 139 | { |
| 140 | 140 | // Support query types: `lexer` / `parser`. |
| 141 | - if (! in_array($type, ['lexer', 'parser'])) { |
|
| 141 | + if (!in_array($type, ['lexer', 'parser'])) { |
|
| 142 | 142 | throw new Exception('Unknown test type (expected `lexer` or `parser`).'); |
| 143 | 143 | } |
| 144 | 144 | |
@@ -183,7 +183,7 @@ discard block |
||
| 183 | 183 | ); |
| 184 | 184 | |
| 185 | 185 | // Remove the project path from .out file, it changes for each dev |
| 186 | - $projectFolder = dirname(__DIR__, 2);// Jump to root |
|
| 186 | + $projectFolder = dirname(__DIR__, 2); // Jump to root |
|
| 187 | 187 | $encoded = str_replace($projectFolder, '<project-root>', $encoded); |
| 188 | 188 | |
| 189 | 189 | file_put_contents($output, $encoded); |
@@ -223,11 +223,11 @@ discard block |
||
| 223 | 223 | if (is_dir($inputFile)) { |
| 224 | 224 | // Creating required directories to maintain the structure. |
| 225 | 225 | // Ignoring errors if the folder structure exists already. |
| 226 | - if (! is_dir($outputFile)) { |
|
| 226 | + if (!is_dir($outputFile)) { |
|
| 227 | 227 | mkdir($outputFile); |
| 228 | 228 | } |
| 229 | 229 | |
| 230 | - if (($debug !== null) && (! is_dir($debugFile))) { |
|
| 230 | + if (($debug !== null) && (!is_dir($debugFile))) { |
|
| 231 | 231 | mkdir($debugFile); |
| 232 | 232 | } |
| 233 | 233 | |
@@ -242,7 +242,7 @@ discard block |
||
| 242 | 242 | } |
| 243 | 243 | |
| 244 | 244 | // Building the test. |
| 245 | - if (! file_exists($outputFile)) { |
|
| 245 | + if (!file_exists($outputFile)) { |
|
| 246 | 246 | echo sprintf("Building test for %s...\n", $inputFile); |
| 247 | 247 | static::build( |
| 248 | 248 | str_contains($inputFile, 'lex') ? 'lexer' : 'parser', |
@@ -67,7 +67,7 @@ |
||
| 67 | 67 | */ |
| 68 | 68 | public static function gettext($msgid) |
| 69 | 69 | { |
| 70 | - if (! class_exists(Loader::class, true)) { |
|
| 70 | + if (!class_exists(Loader::class, true)) { |
|
| 71 | 71 | return $msgid; |
| 72 | 72 | } |
| 73 | 73 | |
@@ -21,8 +21,8 @@ |
||
| 21 | 21 | 'statementEndOptions', |
| 22 | 22 | 'keywordParsers', |
| 23 | 23 | 'statementParsers', |
| 24 | - 'keywordNameIndicators',// Not static |
|
| 25 | - 'operatorNameIndicators',// Not static |
|
| 24 | + 'keywordNameIndicators', // Not static |
|
| 25 | + 'operatorNameIndicators', // Not static |
|
| 26 | 26 | 'defaultDelimiter', |
| 27 | 27 | 'parserMethods', |
| 28 | 28 | 'OPTIONS', |
@@ -51,11 +51,11 @@ |
||
| 51 | 51 | */ |
| 52 | 52 | public static function build($component, array $options = []): string |
| 53 | 53 | { |
| 54 | - if (! $component instanceof WithKeyword) { |
|
| 54 | + if (!$component instanceof WithKeyword) { |
|
| 55 | 55 | throw new RuntimeException('Can not build a component that is not a WithKeyword'); |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - if (! isset($component->statement)) { |
|
| 58 | + if (!isset($component->statement)) { |
|
| 59 | 59 | throw new RuntimeException('No statement inside WITH'); |
| 60 | 60 | } |
| 61 | 61 | |
@@ -267,7 +267,7 @@ |
||
| 267 | 267 | public static function build($component, array $options = []): string |
| 268 | 268 | { |
| 269 | 269 | if ($component->dest instanceof Expression) { |
| 270 | - $columns = ! empty($component->columns) ? '(`' . implode('`, `', $component->columns) . '`)' : ''; |
|
| 270 | + $columns = !empty($component->columns) ? '(`' . implode('`, `', $component->columns) . '`)' : ''; |
|
| 271 | 271 | |
| 272 | 272 | return $component->dest . $columns; |
| 273 | 273 | } |
@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | } |
| 189 | 189 | } |
| 190 | 190 | |
| 191 | - if (! empty($expr->type)) { |
|
| 191 | + if (!empty($expr->type)) { |
|
| 192 | 192 | $ret[] = $expr; |
| 193 | 193 | } |
| 194 | 194 | |
@@ -206,9 +206,9 @@ discard block |
||
| 206 | 206 | $ret = []; |
| 207 | 207 | foreach ($component as $c) { |
| 208 | 208 | $ret[] = array_search($c->type, static::$joins) . ' ' . $c->expr |
| 209 | - . (! empty($c->on) |
|
| 209 | + . (!empty($c->on) |
|
| 210 | 210 | ? ' ON ' . Condition::build($c->on) : '') |
| 211 | - . (! empty($c->using) |
|
| 211 | + . (!empty($c->using) |
|
| 212 | 212 | ? ' USING ' . ArrayObj::build($c->using) : ''); |
| 213 | 213 | } |
| 214 | 214 | |
@@ -413,8 +413,8 @@ discard block |
||
| 413 | 413 | } elseif (($token->value === ',') && ($brackets === 0)) { |
| 414 | 414 | break; |
| 415 | 415 | } |
| 416 | - } elseif (! self::checkIfTokenQuotedSymbol($token)) { |
|
| 417 | - if (! empty(Parser::$statementParsers[$token->value])) { |
|
| 416 | + } elseif (!self::checkIfTokenQuotedSymbol($token)) { |
|
| 417 | + if (!empty(Parser::$statementParsers[$token->value])) { |
|
| 418 | 418 | $list->idx++; // Ignore the current token |
| 419 | 419 | $nextToken = $list->getNext(); |
| 420 | 420 | |
@@ -436,7 +436,7 @@ discard block |
||
| 436 | 436 | } elseif ( |
| 437 | 437 | (array_key_exists($arrayKey, self::$databaseOptions) |
| 438 | 438 | || array_key_exists($arrayKey, self::$tableOptions)) |
| 439 | - && ! self::checkIfColumnDefinitionKeyword($arrayKey) |
|
| 439 | + && !self::checkIfColumnDefinitionKeyword($arrayKey) |
|
| 440 | 440 | ) { |
| 441 | 441 | // This alter operation has finished, which means a comma |
| 442 | 442 | // was missing before start of new alter operation |
@@ -89,7 +89,7 @@ |
||
| 89 | 89 | if ($token->type === Token::TYPE_OPERATOR && $token->value === '(') { |
| 90 | 90 | --$list->idx; // ArrayObj needs to start with `(` |
| 91 | 91 | $state = 1; |
| 92 | - continue;// do not add this token to the name |
|
| 92 | + continue; // do not add this token to the name |
|
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | $ret->name .= $token->value; |