1 | <?php |
||
12 | class forum |
||
13 | { |
||
14 | /** @var \phpbb\config\config */ |
||
15 | protected $config; |
||
16 | |||
17 | /** @var \phpbb\controller\helper */ |
||
18 | protected $helper; |
||
19 | |||
20 | /** @var \phpbb\template\template */ |
||
21 | protected $template; |
||
22 | |||
23 | /** @var \phpbb\language\language */ |
||
24 | protected $translator; |
||
25 | |||
26 | /** @var string phpBB root path */ |
||
27 | protected $phpbb_root_path; |
||
28 | |||
29 | /** @var string phpEx */ |
||
30 | protected $php_ext; |
||
31 | |||
32 | /** |
||
33 | * Constructor |
||
34 | * |
||
35 | * @param \phpbb\config\config $config Config object |
||
36 | * @param \phpbb\controller\helper $helper Controller Helper object |
||
37 | * @param \phpbb\template\template $template Template object |
||
38 | * @param \phpbb\language\language $translator Language object |
||
39 | * @param string $root_path phpBB root path |
||
40 | * @param string $php_ext phpEx |
||
41 | */ |
||
42 | 1 | public function __construct(\phpbb\config\config $config, \phpbb\controller\helper $helper, \phpbb\template\template $template, \phpbb\language\language $translator, $root_path, $php_ext) |
|
51 | |||
52 | /** |
||
53 | * @return \Symfony\Component\HttpFoundation\Response |
||
54 | */ |
||
55 | 1 | public function handle() |
|
73 | } |
||
74 |