1 | <?php |
||
19 | class Template extends Object implements ViewInterface |
||
20 | { |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | public $mode = View::TEMPLATE_MODE_CP; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | public $template = ''; |
||
31 | |||
32 | /** |
||
33 | * @param array $params |
||
34 | * @return string |
||
35 | */ |
||
36 | public function render(array $params = []): string |
||
54 | } |
||
55 |