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.
document
1 parent 50045f7 commit 713eec9Copy full SHA for 713eec9
src/CSSList/Document.php
@@ -24,9 +24,10 @@ class Document extends CSSBlockList
24
*/
25
public static function parse(ParserState $parserState): Document
26
{
27
- $oDocument = new Document($parserState->currentLine());
28
- CSSList::parseList($parserState, $oDocument);
29
- return $oDocument;
+ $document = new Document($parserState->currentLine());
+ CSSList::parseList($parserState, $document);
+
30
+ return $document;
31
}
32
33
/**
0 commit comments