class Specificity

Represents a node specificity.

This component is a port of the Python cssselect library, which is copyright Ian Bicking, see https://github.com/SimonSapin/cssselect.

Constants

A_FACTOR

B_FACTOR

C_FACTOR

Methods

__construct(int $a, int $b, int $c)

No description

plus(Specificity $specificity)

No description

int
getValue()

No description

int
compareTo(Specificity $specificity)

Returns -1 if the object specificity is lower than the argument, 0 if they are equal, and 1 if the argument is lower.

Details

__construct(int $a, int $b, int $c)

Parameters

int $a
int $b
int $c

Specificity plus(Specificity $specificity)

Parameters

Specificity $specificity

Return Value

Specificity

int getValue()

Return Value

int

int compareTo(Specificity $specificity)

Returns -1 if the object specificity is lower than the argument, 0 if they are equal, and 1 if the argument is lower.

Parameters

Specificity $specificity

Return Value

int