Automattic\WooCommerce\Vendor\Sabberworm\CSS\CSSList

Document::parsepublic staticWC 1.0

Method of the class: Document{}

No Hooks.

Returns

Document.

Usage

$result = Document::parse( $oParserState );
$oParserState(ParserState) (required)
.

Document::parse() code WC 10.8.1

public static function parse(ParserState $oParserState)
{
    $oDocument = new Document($oParserState->currentLine());
    CSSList::parseList($oParserState, $oDocument);
    return $oDocument;
}