| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 42 | 1 | public function toDOMElement(\DOMDocument $dom): \DOMElement |
|
| 43 | { |
||
| 44 | 1 | $element = $dom->createElement('enclosure'); |
|
| 45 | 1 | $element->setAttribute('url', $this->url); |
|
| 46 | 1 | $element->setAttribute('length', $this->length); |
|
| 47 | 1 | $element->setAttribute('type', $this->type); |
|
| 48 | |||
| 49 | 1 | return $element; |
|
| 50 | } |
||
| 52 |