| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 66 | public function appendToXml(\SimpleXMLElement &$parent): void { |
||
| 67 | 1 | $element = $parent->addChild("textInput"); |
|
| 68 | 1 | $element->addChild("title", $this->title); |
|
| 69 | 1 | $element->addChild("description", $this->description); |
|
| 70 | 1 | $element->addChild("name", $this->name); |
|
| 71 | 1 | $element->addChild("link", $this->link); |
|
| 72 | 1 | } |
|
| 74 | ?> |