Automattic\WooCommerce\Vendor\Sabberworm\CSS\Value
ValueList::render
Метод класса: ValueList{}
Хуков нет.
Возвращает
Строку.
Использование
$ValueList = new ValueList(); $ValueList->render( $oOutputFormat );
- $oOutputFormat(OutputFormat|null) (обязательный)
- .
Код ValueList::render() ValueList::render WC 10.9.1
public function render($oOutputFormat)
{
return $oOutputFormat->implode(
$oOutputFormat->spaceBeforeListArgumentSeparator($this->sSeparator) . $this->sSeparator
. $oOutputFormat->spaceAfterListArgumentSeparator($this->sSeparator),
$this->aComponents
);
}