Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
11 | 1 | final class TextInput implements IXmlConvertible { |
|
12 | use \Nette\SmartObject; |
||
13 | |||
14 | public string $title; |
||
15 | public string $description; |
||
16 | public string $name; |
||
17 | public string $link; |
||
18 | |||
19 | public function __construct(string $title, string $description, string $name, string $link) { |
||
24 | 1 | } |
|
25 | |||
26 | public function appendToXml(\SimpleXMLElement &$parent): void { |
||
34 | ?> |