1 | <?php |
||
21 | class TwigAdapter implements RendererAdapterInterface |
||
22 | { |
||
23 | /** |
||
24 | * @var EngineInterface |
||
25 | */ |
||
26 | private $twig; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | private $template; |
||
32 | |||
33 | /** |
||
34 | * @param EngineInterface $twig |
||
35 | * @param string $template |
||
36 | */ |
||
37 | public function __construct(EngineInterface $twig, $template) |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | public function render(SitemapInterface $sitemap) |
||
50 | } |
||
51 |