1 | <?php |
||
11 | class RenderSubscriber implements EventSubscriberInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var Twig_Environment |
||
15 | */ |
||
16 | protected $twig; |
||
17 | |||
18 | /** |
||
19 | * @var Twig_Lexer |
||
20 | */ |
||
21 | protected $defaultLexer; |
||
22 | |||
23 | /** |
||
24 | * RenderSubscriber constructor. |
||
25 | * |
||
26 | * @param Twig_Environment $twig |
||
27 | */ |
||
28 | public function __construct(Twig_Environment $twig) |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | 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 | public function updateTagTwig(GetResponseEvent $event) |
||
56 | |||
57 | /** |
||
58 | * Set the default twig lexer to display default tags on exceptions |
||
59 | * |
||
60 | * @param GetResponseForExceptionEvent $event |
||
61 | */ |
||
62 | public function onKernelException(GetResponseForExceptionEvent $event) |
||
68 | |||
69 | /** |
||
70 | * Retrieve the custom twig lexer for the front |
||
71 | * |
||
72 | * @return Twig_Lexer |
||
73 | */ |
||
74 | public function getFrontLexer() |
||
84 | } |
||
85 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.