Automattic\WooCommerce\Vendor\Sabberworm\CSS\Property

CSSNamespace::renderpublicWC 1.0

Method of the class: CSSNamespace{}

No Hooks.

Returns

String.

Usage

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

CSSNamespace::render() code WC 10.5.0

public function render($oOutputFormat)
{
    return '@namespace ' . ($this->sPrefix === null ? '' : $this->sPrefix . ' ')
        . $this->mUrl->render($oOutputFormat) . ';';
}