Skip to content

Commit 713eec9

Browse files
authored
[CLEANUP] Avoid Hungarian notation for document (#1048)
Part of #756
1 parent 50045f7 commit 713eec9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/CSSList/Document.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ class Document extends CSSBlockList
2424
*/
2525
public static function parse(ParserState $parserState): Document
2626
{
27-
$oDocument = new Document($parserState->currentLine());
28-
CSSList::parseList($parserState, $oDocument);
29-
return $oDocument;
27+
$document = new Document($parserState->currentLine());
28+
CSSList::parseList($parserState, $document);
29+
30+
return $document;
3031
}
3132

3233
/**

0 commit comments

Comments
 (0)