| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 47 | public function toXmlArray() |
||
| 48 | { |
||
| 49 | return [ |
||
| 50 | 'Music' => [ |
||
| 51 | 'Title' => $this->get('title'), |
||
| 52 | 'Description' => $this->get('description'), |
||
| 53 | 'MusicUrl' => $this->get('url'), |
||
| 54 | 'HQMusicUrl' => $this->get('hq_url'), |
||
| 55 | 'ThumbMediaId' => $this->get('thumb_media_id'), |
||
| 56 | ], |
||
| 57 | ]; |
||
| 58 | } |
||
| 59 | } |
||
| 60 |