Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
37 | public function __construct($directory = null, $fileExtension = 'php') |
||
38 | { |
||
39 | parent::__construct($directory, $fileExtension); |
||
40 | $this->addHelpersExtension(); |
||
41 | $this->loadExtension(new LegacyLoadExtension()); |
||
42 | $this->loadExtension(new RenderConditionsExtension()); |
||
43 | $this->setResolveTemplatePath(new ThemeFolderResolveTemplatePath($this)); |
||
44 | $this->initFinder(); |
||
45 | } |
||
47 |