Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
None_
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 * `none` — the explicit "do not paint" value. Distinct from an absent
11 * attribute, which inherits per CSS rules (handled in 3J).
12 */
13final class None_ extends Paint {}