Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | final class Node extends AbstractSoapElement |
||
15 | { |
||
16 | use StringElementTrait; |
||
17 | |||
18 | |||
19 | /** |
||
20 | * Initialize a env:Node |
||
21 | * |
||
22 | * @param string $node |
||
23 | */ |
||
24 | public function __construct(string $node) |
||
27 | } |
||
28 | |||
29 | |||
30 | /** |
||
31 | * Validate the content of the element. |
||
32 | * |
||
33 | * @param string $content The value to go in the XML textContent |
||
34 | * @throws \Exception on failure |
||
35 | * @return void |
||
36 | */ |
||
37 | protected function validateContent(string $content): void |
||
42 |