Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
GenericElement
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace Phpdftk\Svg;
6
7/**
8 * Catch-all for SVG elements that don't yet have a dedicated typed class.
9 * Stores the local name and the raw attribute bag so sanitisers and
10 * format converters can still traverse the document. As Phase-3 work
11 * lands typed classes for individual elements (circle, ellipse, path,
12 * group, text, …), this becomes the home only for genuinely unknown
13 * extension elements.
14 */
15final class GenericElement extends Element {}