15 lines
387 B
PHP
15 lines
387 B
PHP
|
<?php
|
||
|
|
||
|
namespace kernel;
|
||
|
|
||
|
class Controller
|
||
|
{
|
||
|
protected \Twig\Loader\FilesystemLoader $loader;
|
||
|
protected \Twig\Environment $twig;
|
||
|
|
||
|
public function __construct()
|
||
|
{
|
||
|
$this->loader = new \Twig\Loader\FilesystemLoader(ROOT_DIR . $_ENV['VIEWS_PATH']);
|
||
|
$this->twig = new \Twig\Environment($this->loader, ['cache' => ROOT_DIR . $_ENV['VIEWS_CACHE_PATH']]);
|
||
|
}
|
||
|
}
|