Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
9 | class SvgElement extends Element implements ForeignElement |
||
10 | { |
||
11 | public const XMLNS = 'http://www.w3.org/2000/svg'; |
||
12 | public const VERSION = '1.1'; |
||
13 | |||
14 | /** @var array<string, string> */ |
||
15 | protected array $attributes = [ |
||
16 | 'xmlns' => self::XMLNS, |
||
17 | 'version' => self::VERSION |
||
18 | ]; |
||
19 | |||
20 | 1 | public function getTagName(): string |
|
25 |