Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| TargetFunctionKind | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Phpdftk\Css\Value; |
| 6 | |
| 7 | /** |
| 8 | * Discriminator on {@see TargetFunction} — which CSS Generated |
| 9 | * Content for Paged Media 3 §3 cross-reference variant. |
| 10 | */ |
| 11 | enum TargetFunctionKind: string |
| 12 | { |
| 13 | case Counter = 'target-counter'; |
| 14 | case Counters = 'target-counters'; |
| 15 | case Text = 'target-text'; |
| 16 | } |