Automattic\WooCommerce\Vendor\Sabberworm\CSS\Value

ValueList::renderpublicWC 1.0

Метод класса: ValueList{}

Хуков нет.

Возвращает

Строку.

Использование

$ValueList = new ValueList();
$ValueList->render( $oOutputFormat );
$oOutputFormat(OutputFormat|null) (обязательный)
.

Код 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
    );
}