Automattic\WooCommerce\Vendor\Sabberworm\CSS\CSSList

Document::renderpublicWC 1.0

Overrides render() to make format argument optional.

Method of the class: Document{}

No Hooks.

Returns

String.

Usage

$Document = new Document();
$Document->render( $oOutputFormat );
$oOutputFormat(OutputFormat|null)
.
Default: null

Document::render() code WC 10.4.3

public function render($oOutputFormat = null)
{
    if ($oOutputFormat === null) {
        $oOutputFormat = new OutputFormat();
    }
    return $oOutputFormat->comments($this) . $this->renderListContents($oOutputFormat);
}