Total Complexity | 1 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | trait URIElementTrait |
||
19 | { |
||
20 | use BaseURIElementTrait; |
||
21 | |||
22 | /** |
||
23 | * Validate the content of the element. |
||
24 | * |
||
25 | * @param string $content The value to go in the XML textContent |
||
26 | * @throws \Exception on failure |
||
27 | * @return void |
||
28 | */ |
||
29 | protected function validateContent(string $content): void |
||
42 |