We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c75efd commit f234bf7Copy full SHA for f234bf7
1 file changed
src/FormulaConverter.php
@@ -134,7 +134,7 @@ private static function expandAtom($atom)
134
$chunk = "({$what} == {$from} || {$what} == {$to})";
135
break;
136
case '!=':
137
- $chunk = "({$what} != {$from}) && ({$what} == {$to})";
+ $chunk = "{$what} != {$from} && {$what} != {$to}";
138
139
}
140
} else {
0 commit comments