1 | <?php |
||
11 | class RenderSubscriber implements EventSubscriberInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var LexerManager |
||
15 | */ |
||
16 | protected $twigLexerManager; |
||
17 | |||
18 | /** |
||
19 | * @var bool |
||
20 | */ |
||
21 | protected $stopPropagation = false; |
||
22 | |||
23 | /** |
||
24 | * RenderSubscriber constructor. |
||
25 | * |
||
26 | * @param LexerManager $twigLexerManager |
||
27 | */ |
||
28 | 11 | public function __construct(LexerManager $twigLexerManager) |
|
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | 1 | public static function getSubscribedEvents() |
|
43 | |||
44 | /** |
||
45 | * Set the custom twig lexer to display custom tags on the front |
||
46 | * |
||
47 | * @param GetResponseEvent $event |
||
48 | */ |
||
49 | 2 | public function updateTwigLexer(GetResponseEvent $event) |
|
56 | |||
57 | /** |
||
58 | * Set the custom twig lexer to display custom tags on the front |
||
59 | * |
||
60 | * @param FilterResponseEvent $event |
||
61 | */ |
||
62 | 1 | public function rollbackTwigLexer(FilterResponseEvent $event) |
|
67 | } |
||
68 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.