1 | <?php |
||
18 | final class RenderContentExtension extends \Twig_Extension |
||
19 | { |
||
20 | /** @var ContentParserInterface */ |
||
21 | private $contentParser; |
||
22 | |||
23 | public function __construct(ContentParserInterface $contentParser) |
||
27 | |||
28 | public function getFunctions(): array |
||
34 | |||
35 | public function renderContent(ContentableInterface $contentableResource): string |
||
41 | } |
||
42 |