Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
54 | public function appendToXml(\SimpleXMLElement &$parent): void { |
||
55 | 1 | $enclosureElement = $parent->addChild("enclosure"); |
|
56 | 1 | $enclosureElement->addAttribute("url", $this->url); |
|
57 | 1 | $enclosureElement->addAttribute("length", (string) $this->length); |
|
58 | 1 | $enclosureElement->addAttribute("type", $this->type); |
|
59 | 1 | } |
|
61 | ?> |