Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace Limoncello\Templates; |
||
32 | 4 | public function __construct($templatesFolder, $cacheFolder = null) |
|
33 | { |
||
34 | // For Twig options see http://twig.sensiolabs.org/doc/api.html |
||
35 | $options = [ |
||
36 | 4 | 'cache' => $cacheFolder === null ? false : $cacheFolder, |
|
37 | 4 | 'auto_reload' => false, |
|
38 | 4 | ]; |
|
39 | |||
40 | 4 | parent::__construct(new Twig_Loader_Filesystem($templatesFolder), $options); |
|
41 | 4 | } |
|
42 | } |
||
43 |