1 | <?php |
||
7 | abstract class AbstractController |
||
8 | { |
||
9 | /** |
||
10 | * @var array |
||
11 | */ |
||
12 | protected $_templateVars = []; |
||
13 | |||
14 | /** |
||
15 | * @var string|null |
||
16 | */ |
||
17 | protected $_template = null; |
||
18 | |||
19 | /** |
||
20 | * @var App |
||
21 | */ |
||
22 | protected $app; |
||
23 | |||
24 | public function __construct(App $app) |
||
28 | |||
29 | public function set($vars) |
||
33 | |||
34 | public function templateVars() |
||
38 | |||
39 | public function render() |
||
55 | |||
56 | protected function config(string $key) |
||
60 | } |
||
61 |