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