Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
BasicShape
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace Phpdftk\Css\Value;
6
7/**
8 * Base class for the CSS Shapes 1 §3 basic-shape value types —
9 * `inset()`, `circle()`, `ellipse()`, `polygon()`, `path()`,
10 * `rect()`, `xywh()`. Used as values for `clip-path`,
11 * `shape-outside`, `offset-path`.
12 *
13 * Concrete subclasses store the geometry parameters; the painter
14 * dispatches by class on cmd.
15 */
16abstract readonly class BasicShape extends Value {}