1 | <?php |
||
11 | class Template |
||
12 | { |
||
13 | |||
14 | /** |
||
15 | * @var \Twig_Environment |
||
16 | */ |
||
17 | protected $engine; |
||
18 | |||
19 | protected static $instance; |
||
20 | |||
21 | /** |
||
22 | * |
||
23 | */ |
||
24 | 2 | protected function __construct() |
|
34 | |||
35 | /** |
||
36 | * @return Template |
||
37 | */ |
||
38 | 88 | public static function getInstance() |
|
46 | |||
47 | /** |
||
48 | * @return \Twig_Environment |
||
49 | */ |
||
50 | 88 | public function getEngine() |
|
54 | } |
||
55 |