1 | <?php |
||
15 | class main |
||
16 | { |
||
17 | /** @var \phpbb\path_helper */ |
||
18 | protected $path_helper; |
||
19 | |||
20 | /** @var Container */ |
||
21 | protected $phpbb_container; |
||
22 | |||
23 | /** @var \phpbb\user */ |
||
24 | protected $user; |
||
25 | |||
26 | /** |
||
27 | * Constructor |
||
28 | * |
||
29 | * @param \phpbb\path_helper $path_helper |
||
30 | * @param Container $phpbb_container |
||
31 | * @param \phpbb\user $user |
||
32 | |||
33 | */ |
||
34 | public function __construct(\phpbb\path_helper $path_helper, Container $phpbb_container, \phpbb\user $user) |
||
40 | |||
41 | public function query() |
||
62 | } |
||
63 |