diff options
Diffstat (limited to 'src/Context.php')
-rw-r--r-- | src/Context.php | 2 |
1 files changed, 1 insertions, 1 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, |