This commit is contained in:
kali
2024-03-25 18:07:54 +03:00
parent 5ecf87df75
commit e91e44ded9
49 changed files with 2197 additions and 24 deletions

View File

@ -0,0 +1,17 @@
<?php
namespace itguild\forms\app\core;
class BaseController
{
protected $view;
public function __construct()
{
$loader = new \Twig\Loader\FilesystemLoader(VIEW_PATH);
$this->view = new \Twig\Environment($loader, [
'cache' => VIEW_CACHE_PATH,
]);
}
}