| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function __construct(array $options = []) |
||
| 14 | { |
||
| 15 | parent::__construct($options); |
||
| 16 | |||
| 17 | $this->setViewsDir(getenv('ROOT_DIR').'/app/framework/web/modules/front/views/'); |
||
| 18 | $this->setMainView('front'); |
||
| 19 | |||
| 20 | $volt = new Volt($this, $this->getDI()); |
||
| 21 | $volt->setOptions([ |
||
| 22 | 'path' => getenv('ROOT_DIR').'/cache/volt/', |
||
| 23 | ]); |
||
| 24 | |||
| 25 | $this->registerEngines([ |
||
| 26 | '.volt' => $volt, |
||
| 27 | ]); |
||
| 28 | } |
||
| 29 | } |
||
| 30 |