Automattic\WooCommerce\Vendor\Sabberworm\CSS\Property

CSSNamespace::__constructpublicWC 1.0

Method of the class: CSSNamespace{}

No Hooks.

Returns

null. Nothing (null).

Usage

$CSSNamespace = new CSSNamespace();
$CSSNamespace->__construct( $mUrl, $sPrefix, $iLineNo );
$mUrl(string) (required)
.
$sPrefix(string|null)
.
Default: null
$iLineNo(int)
.

CSSNamespace::__construct() code WC 10.4.3

public function __construct($mUrl, $sPrefix = null, $iLineNo = 0)
{
    $this->mUrl = $mUrl;
    $this->sPrefix = $sPrefix;
    $this->setPosition($iLineNo);
    $this->aComments = [];
}