Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| Tspan | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Phpdftk\Svg\Text; |
| 6 | |
| 7 | /** |
| 8 | * SVG `<tspan>` per SVG 2 §11.5 — a styled run inside a `<text>` element. |
| 9 | * Carries the same positioning attributes as `<text>` (relative or |
| 10 | * absolute) and may itself nest further tspans. |
| 11 | */ |
| 12 | final class Tspan extends TextPositioningElement |
| 13 | { |
| 14 | public function __construct() |
| 15 | { |
| 16 | parent::__construct('tspan'); |
| 17 | } |
| 18 | } |