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