Conditions | 3 |
Paths | 4 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
44 | 21 | public function asXML() |
|
45 | { |
||
46 | 21 | $idPart = $this->id ? ' id="' . $this->id . '" ' : ''; |
|
47 | 21 | $urlPart = $this->url ? ' url="' . $this->url . '" ' : ''; |
|
48 | |||
49 | 21 | $xml = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8" ?><yandex:analytics type="' |
|
50 | 21 | . $this->type . '"' . $idPart . $urlPart . ' xmlns:yandex="http://news.yandex.ru"></yandex:analytics>', |
|
51 | 21 | LIBXML_NOERROR | LIBXML_ERR_NONE | LIBXML_ERR_FATAL); |
|
52 | |||
53 | 21 | return $xml; |
|
54 | } |
||
55 | } |