Automattic\WooCommerce\Vendor\Symfony\Component\CssSelector\Node

Specificity::getValuepublicWC 1.0

Method of the class: Specificity{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Specificity = new Specificity();
$Specificity->getValue(): int;

Specificity::getValue() code WC 11.0.1

public function getValue(): int
{
    return $this->a * self::A_FACTOR + $this->b * self::B_FACTOR + $this->c * self::C_FACTOR;
}