| 1 | <?php |
||
| 12 | class PlainTextSitemapIndexRender implements SitemapIndexRender |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @return string |
||
| 16 | */ |
||
| 17 | public function start() |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | public function end() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param string $url |
||
| 33 | * @param \DateTimeImmutable|null $last_mod |
||
| 34 | * |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | public function sitemap($url, \DateTimeImmutable $last_mod = null) |
||
| 44 | } |
||
| 45 |