1 | <?php |
||
19 | class SitemapRenderer implements SitemapRendererInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var RendererAdapterInterface |
||
23 | */ |
||
24 | private $adapter; |
||
25 | |||
26 | /** |
||
27 | * @param RendererAdapterInterface $adapter |
||
28 | * @param array $configuration |
||
29 | */ |
||
30 | public function __construct(RendererAdapterInterface $adapter, array $configuration = []) |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function render(SitemapInterface $sitemap) |
||
42 | } |
||
43 |