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.
2 parents ba32046 + 668d0bb commit 76e67a2Copy full SHA for 76e67a2
Parser/Shortcut/EmptyStringParser.php
@@ -37,7 +37,7 @@ class EmptyStringParser implements ParserInterface
37
public function parse($source)
38
{
39
// Matches an empty string
40
- if ($source == '') {
+ if ('' == $source) {
41
return array(new SelectorNode(new ElementNode(null, '*')));
42
}
43
0 commit comments