Automattic\WooCommerce\Vendor\Sabberworm\CSS\Property

CSSNamespace::atRuleArgspublicWC 1.0

Method of the class: CSSNamespace{}

No Hooks.

Returns

Array. string>

Usage

$CSSNamespace = new CSSNamespace();
$CSSNamespace->atRuleArgs();

CSSNamespace::atRuleArgs() code WC 10.4.3

public function atRuleArgs()
{
    $aResult = [$this->mUrl];
    if ($this->sPrefix) {
        array_unshift($aResult, $this->sPrefix);
    }
    return $aResult;
}