Automattic\WooCommerce\Vendor\Sabberworm\CSS\Rule

Rule::__constructpublicWC 1.0

Method of the class: Rule{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Rule = new Rule();
$Rule->__construct( $sRule, $iLineNo, $iColNo );
$sRule(string) (required)
.
$iLineNo(int)
.
$iColNo(int)
.

Rule::__construct() code WC 10.5.0

public function __construct($sRule, $iLineNo = 0, $iColNo = 0)
{
    $this->sRule = $sRule;
    $this->mValue = null;
    $this->bIsImportant = false;
    $this->aIeHack = [];
    $this->setPosition($iLineNo, $iColNo);
    $this->aComments = [];
}