Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
38 | 5 | public function url(Url $url) |
|
39 | { |
||
40 | return '<url>'. |
||
41 | 5 | '<loc>'.htmlspecialchars($url->getLoc()).'</loc>'. |
|
42 | 5 | '<lastmod>'.$url->getLastMod()->format('c').'</lastmod>'. |
|
43 | 5 | '<changefreq>'.$url->getChangeFreq().'</changefreq>'. |
|
44 | 5 | '<priority>'.$url->getPriority().'</priority>'. |
|
45 | 5 | '</url>'; |
|
46 | } |
||
47 | } |
||
48 |