Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | class MetadataElement extends BaseMetadataElement |
||
6 | { |
||
7 | protected string $name; |
||
8 | protected string $content; |
||
9 | |||
10 | public function __construct(string $name, string $content) |
||
11 | { |
||
12 | $this->name = $name; |
||
13 | $this->content = $content; |
||
14 | } |
||
15 | |||
16 | public function __toString(): string |
||
19 | } |
||
20 | |||
21 | public function uniqueKey(): string |
||
26 |