@@ -278,7 +278,7 @@ discard block |
||
| 278 | 278 | $str = strtoupper($str); |
| 279 | 279 | |
| 280 | 280 | if (isset(static::$KEYWORDS[$str])) { |
| 281 | - if ($isReserved && ! (static::$KEYWORDS[$str] & Token::FLAG_KEYWORD_RESERVED)) { |
|
| 281 | + if ($isReserved && !(static::$KEYWORDS[$str] & Token::FLAG_KEYWORD_RESERVED)) { |
|
| 282 | 282 | return null; |
| 283 | 283 | } |
| 284 | 284 | |
@@ -300,7 +300,7 @@ discard block |
||
| 300 | 300 | */ |
| 301 | 301 | public static function isOperator($str) |
| 302 | 302 | { |
| 303 | - if (! isset(static::$OPERATORS[$str])) { |
|
| 303 | + if (!isset(static::$OPERATORS[$str])) { |
|
| 304 | 304 | return null; |
| 305 | 305 | } |
| 306 | 306 | |
@@ -506,7 +506,7 @@ discard block |
||
| 506 | 506 | $context = self::$contextPrefix . $context; |
| 507 | 507 | } |
| 508 | 508 | |
| 509 | - if (! class_exists($context)) { |
|
| 509 | + if (!class_exists($context)) { |
|
| 510 | 510 | throw @new LoaderException('Specified context ("' . $context . '") does not exist.', $context); |
| 511 | 511 | } |
| 512 | 512 | |
@@ -542,7 +542,7 @@ discard block |
||
| 542 | 542 | $i -= 2; |
| 543 | 543 | $part = substr($context, $i, 2); |
| 544 | 544 | /* No more numeric parts to strip */ |
| 545 | - if (! is_numeric($part)) { |
|
| 545 | + if (!is_numeric($part)) { |
|
| 546 | 546 | break 2; |
| 547 | 547 | } |
| 548 | 548 | } while (intval($part) === 0 && $i > 0); |
@@ -599,7 +599,7 @@ discard block |
||
| 599 | 599 | return $str; |
| 600 | 600 | } |
| 601 | 601 | |
| 602 | - if ((static::$MODE & self::SQL_MODE_NO_ENCLOSING_QUOTES) && (! static::isKeyword($str, true))) { |
|
| 602 | + if ((static::$MODE & self::SQL_MODE_NO_ENCLOSING_QUOTES) && (!static::isKeyword($str, true))) { |
|
| 603 | 603 | return $str; |
| 604 | 604 | } |
| 605 | 605 | |