diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Context.php | 2 | ||||
-rw-r--r-- | src/Utils/BufferedQuery.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Context.php b/src/Context.php index c52cbcf..c355534 100644 --- a/src/Context.php +++ b/src/Context.php @@ -95,7 +95,7 @@ abstract class Context '%' => 1, '*' => 1, '+' => 1, '-' => 1, '/' => 1, // @see Token::FLAG_OPERATOR_LOGICAL - '!' => 2, '!==' => 2, '&&' => 2, '<' => 2, '<=' => 2, + '!' => 2, '!=' => 2, '&&' => 2, '<' => 2, '<=' => 2, '<=>' => 2, '<>' => 2, '=' => 2, '>' => 2, '>=' => 2, '||' => 2, diff --git a/src/Utils/BufferedQuery.php b/src/Utils/BufferedQuery.php index dc2bdcb..c01ead7 100644 --- a/src/Utils/BufferedQuery.php +++ b/src/Utils/BufferedQuery.php @@ -83,8 +83,8 @@ class BufferedQuery /** * Constructor. * - * @param string $query The query to be parsed. - * @param array $options The options of this parser. + * @param string $query The query to be parsed. + * @param array $options The options of this parser. */ public function __construct($query = '', array $options = array()) { |