Files
firstPHP/src/app/core/BaseController.php
kali 74719c7250 bd
2024-03-27 17:24:47 +03:00

17 lines
306 B
PHP
Executable File

<?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,
]);
}
}