1 | <?php |
||
15 | class EnvironmentConfigEvent extends Event |
||
16 | { |
||
17 | const EVENT = 'TwigView.TwigView.environment'; |
||
18 | |||
19 | /** |
||
20 | * @param array $config |
||
21 | * |
||
22 | * @return static |
||
23 | */ |
||
24 | 12 | public static function create(array $config) |
|
30 | |||
31 | /** |
||
32 | * @return array |
||
33 | */ |
||
34 | public function getConfig() |
||
38 | |||
39 | /** |
||
40 | * @param array $config |
||
41 | */ |
||
42 | public function setConfig(array $config) |
||
46 | } |
||
47 |