1 | <?php |
||
7 | final class ReplyExtension implements ExtensionInterface |
||
8 | { |
||
9 | /** |
||
10 | * Returns a list of block parsers to add to the existing list. |
||
11 | * |
||
12 | * @return array |
||
13 | */ |
||
14 | /*public function getBlockParsers() |
||
15 | { |
||
16 | return [ |
||
17 | new ReplyParser(), |
||
18 | ]; |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * Returns a list of block renderers to add to the existing list. |
||
23 | * |
||
24 | * @return array |
||
25 | */ |
||
26 | /*public function getBlockRenderers() |
||
27 | { |
||
28 | return [ |
||
29 | Reply::class => new ReplyRenderer(), |
||
30 | ]; |
||
31 | }*/ |
||
32 | |||
33 | public function register(ConfigurableEnvironmentInterface $environment) |
||
39 | } |
||
40 |