1 | <?php |
||
16 | class ConstructEvent extends Event |
||
17 | { |
||
18 | const EVENT = 'TwigView.TwigView.construct'; |
||
19 | |||
20 | /** |
||
21 | * @param TwigView $twigView |
||
22 | * @param \Twig_Environment $twig |
||
23 | * @return static |
||
24 | */ |
||
25 | 14 | public static function create(TwigView $twigView, \Twig_Environment $twig) |
|
32 | |||
33 | /** |
||
34 | * @return TwigView |
||
35 | */ |
||
36 | public function getTwigView() |
||
40 | |||
41 | /** |
||
42 | * @return \Twig_Environment |
||
43 | */ |
||
44 | public function getTwig() |
||
48 | } |
||
49 |