17 lines
306 B
PHP
Executable File
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,
|
|
]);
|
|
}
|
|
|
|
} |