Automattic\WooCommerce\Vendor\Sabberworm\CSS\Property
CSSNamespace::render
Method of the class: CSSNamespace{}
No Hooks.
Returns
String.
Usage
$CSSNamespace = new CSSNamespace(); $CSSNamespace->render( $oOutputFormat );
- $oOutputFormat(OutputFormat|null) (required)
- .
CSSNamespace::render() CSSNamespace::render code WC 10.5.0
public function render($oOutputFormat)
{
return '@namespace ' . ($this->sPrefix === null ? '' : $this->sPrefix . ' ')
. $this->mUrl->render($oOutputFormat) . ';';
}