Automattic\WooCommerce\Vendor\Sabberworm\CSS\Value

ValueList::renderpublicWC 1.0

Method of the class: ValueList{}

No Hooks.

Returns

String.

Usage

$ValueList = new ValueList();
$ValueList->render( $oOutputFormat );
$oOutputFormat(OutputFormat|null) (required)
.

ValueList::render() code WC 10.7.0

public function render($oOutputFormat)
{
    return $oOutputFormat->implode(
        $oOutputFormat->spaceBeforeListArgumentSeparator($this->sSeparator) . $this->sSeparator
        . $oOutputFormat->spaceAfterListArgumentSeparator($this->sSeparator),
        $this->aComponents
    );
}