| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | abstract class AbstractPart extends AbstractAgenda |
||
| 18 | { |
||
| 19 | use SetNamespaceTrait; |
||
| 20 | |||
| 21 | protected ?string $nodePrefix = null; |
||
| 22 | |||
| 23 | /** @var string[] */ |
||
| 24 | protected array $elements = []; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Set node name prefix. |
||
| 28 | * |
||
| 29 | * @param string $prefix |
||
| 30 | * |
||
| 31 | * @return void |
||
| 32 | */ |
||
| 33 | 57 | public function setNodePrefix(string $prefix): void |
|
| 38 |