Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
Token
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace Phpdftk\Css\Token;
6
7/**
8 * Base type for CSS Syntax Module 3 tokens. Per the spec the tokenizer
9 * emits a stream of typed tokens; each concrete subclass corresponds to
10 * one of the token kinds enumerated in ยง4.
11 */
12abstract readonly class Token {}