You are here

public function Specificity::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/css-selector/Node/Specificity.php \Symfony\Component\CssSelector\Node\Specificity::__construct()

Constructor.

Parameters

int $a:

int $b:

int $c:

File

vendor/symfony/css-selector/Node/Specificity.php, line 52

Class

Specificity
Represents a node specificity.

Namespace

Symfony\Component\CssSelector\Node

Code

public function __construct($a, $b, $c) {
  $this->a = $a;
  $this->b = $b;
  $this->c = $c;
}