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