Automattic\WooCommerce\Vendor\Sabberworm\CSS\Property

Import::renderpublicWC 1.0

Method of the class: Import{}

No Hooks.

Returns

String.

Usage

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

Import::render() code WC 10.7.0

public function render($oOutputFormat)
{
    return $oOutputFormat->comments($this) . "@import " . $this->oLocation->render($oOutputFormat)
        . ($this->sMediaQuery === null ? '' : ' ' . $this->sMediaQuery) . ';';
}