14 lines
350 B
PHP
14 lines
350 B
PHP
<?php
|
|
|
|
namespace app\controllers;
|
|
|
|
class Controller
|
|
{
|
|
protected \Twig\Loader\FilesystemLoader $loader;
|
|
protected \Twig\Environment $twig;
|
|
public function __construct()
|
|
{
|
|
$this->loader = new \Twig\Loader\FilesystemLoader(__DIR__.'/../views');
|
|
$this->twig = new \Twig\Environment($this->loader, ['cache' => 'app/views/cache']);
|
|
}
|
|
} |