Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| Text | |
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; |
| 6 | |
| 7 | /** |
| 8 | * A leaf text node — `#text` data inside an element. Whitespace handling is |
| 9 | * the caller's responsibility (SVG xml:space="preserve" support is the |
| 10 | * cascade's job, not the parser's). |
| 11 | */ |
| 12 | final class Text extends Node |
| 13 | { |
| 14 | public function __construct(public string $data) {} |
| 15 | } |