Automattic\WooCommerce\Vendor\Sabberworm\CSS\Property

Import::atRuleArgspublicWC 1.0

Method of the class: Import{}

No Hooks.

Returns

Array. URL|string>

Usage

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

Import::atRuleArgs() code WC 10.5.0

public function atRuleArgs()
{
    $aResult = [$this->oLocation];
    if ($this->sMediaQuery) {
        array_push($aResult, $this->sMediaQuery);
    }
    return $aResult;
}