@@ -400,7 +400,7 @@ discard block |
||
400 | 400 | } elseif (($token->value === ',') && ($brackets === 0)) { |
401 | 401 | break; |
402 | 402 | } |
403 | - } elseif (! self::checkIfTokenQuotedSymbol($token) && $token->type !== Token::TYPE_STRING) { |
|
403 | + } elseif (!self::checkIfTokenQuotedSymbol($token) && $token->type !== Token::TYPE_STRING) { |
|
404 | 404 | if (isset(Parser::STATEMENT_PARSERS[$arrayKey]) && Parser::STATEMENT_PARSERS[$arrayKey] !== '') { |
405 | 405 | $list->idx++; // Ignore the current token |
406 | 406 | $nextToken = $list->getNext(); |
@@ -423,7 +423,7 @@ discard block |
||
423 | 423 | } elseif ( |
424 | 424 | (array_key_exists($arrayKey, self::DATABASE_OPTIONS) |
425 | 425 | || array_key_exists($arrayKey, self::TABLE_OPTIONS)) |
426 | - && ! self::checkIfColumnDefinitionKeyword($arrayKey) |
|
426 | + && !self::checkIfColumnDefinitionKeyword($arrayKey) |
|
427 | 427 | ) { |
428 | 428 | // This alter operation has finished, which means a comma |
429 | 429 | // was missing before start of new alter operation |