Automattic\WooCommerce\Vendor\Sabberworm\CSS\CSSList

AtRuleBlockList::__constructpublicWC 1.0

Метод класса: AtRuleBlockList{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$AtRuleBlockList = new AtRuleBlockList();
$AtRuleBlockList->__construct( $sType, $sArgs, $iLineNo );
$sType(строка) (обязательный)
.
$sArgs(строка)
.
По умолчанию: ''
$iLineNo(int)
.

Код AtRuleBlockList::__construct() WC 10.4.3

public function __construct($sType, $sArgs = '', $iLineNo = 0)
{
    parent::__construct($iLineNo);
    $this->sType = $sType;
    $this->sArgs = $sArgs;
}