Automattic\WooCommerce\Vendor\Sabberworm\CSS\Value
ValueList::render
Method of the class: ValueList{}
No Hooks.
Returns
String.
Usage
$ValueList = new ValueList(); $ValueList->render( $oOutputFormat );
- $oOutputFormat(OutputFormat|null) (required)
- .
ValueList::render() 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
);
}