Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
34 | 2 | public function __construct($templatesDir = '', $optionTwig = []) |
|
35 | { |
||
36 | 2 | if (empty($templatesDir)) { |
|
37 | 2 | $templatesDir = __DIR__ . '/Templates'; |
|
38 | 2 | } |
|
39 | 2 | $loader = new \Twig_Loader_Filesystem($templatesDir); |
|
40 | 2 | $this->twig = new \Twig_Environment($loader, $optionTwig); |
|
41 | 2 | } |
|
42 | |||
69 | } |