Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
SimpleSelector
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
 specificity
n/a
0 / 0
n/a
0 / 0
0
 toString
n/a
0 / 0
n/a
0 / 0
0
1<?php
2
3declare(strict_types=1);
4
5namespace Phpdftk\Css\Selector;
6
7/**
8 * Base for the single-component selectors per Selectors 4 ยง3.5: type,
9 * universal, id, class, attribute, pseudo-class, pseudo-element. Compound
10 * selectors are sequences of these with no intervening whitespace.
11 */
12abstract readonly class SimpleSelector
13{
14    abstract public function specificity(): Specificity;
15
16    abstract public function toString(): string;
17}