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 7857a52 + 7c42a28 commit 0fb45a8Copy full SHA for 0fb45a8
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