Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
CurrentColor
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace Phpdftk\Svg\Value\Paint;
6
7use Phpdftk\Svg\Value\Paint;
8
9/**
10 * `currentColor` — defers to the value of the `color` property at paint
11 * time. The painter resolves it against the current style; the parser
12 * doesn't have enough context to inline a colour value here.
13 */
14final class CurrentColor extends Paint {}