Skip to content

Commit aef354a

Browse files
committed
Typo in operator name.
Fixed spacing in comment.
1 parent 0ccc3a2 commit aef354a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/Context.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ abstract class Context
9595
'%' => 1, '*' => 1, '+' => 1, '-' => 1, '/' => 1,
9696

9797
// @see Token::FLAG_OPERATOR_LOGICAL
98-
'!' => 2, '!==' => 2, '&&' => 2, '<' => 2, '<=' => 2,
98+
'!' => 2, '!=' => 2, '&&' => 2, '<' => 2, '<=' => 2,
9999
'<=>' => 2, '<>' => 2, '=' => 2, '>' => 2, '>=' => 2,
100100
'||' => 2,
101101

src/Utils/BufferedQuery.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ class BufferedQuery
8383
/**
8484
* Constructor.
8585
*
86-
* @param string $query The query to be parsed.
87-
* @param array $options The options of this parser.
86+
* @param string $query The query to be parsed.
87+
* @param array $options The options of this parser.
8888
*/
8989
public function __construct($query = '', array $options = array())
9090
{

0 commit comments

Comments
 (0)