18 lines
231 B
PHP
18 lines
231 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace App\Controller;
|
||
|
|
||
|
use Twig\Environment;
|
||
|
|
||
|
abstract class BaseController
|
||
|
{
|
||
|
protected $twig;
|
||
|
|
||
|
public function __construct(Environment $twig)
|
||
|
{
|
||
|
$this->twig = $twig;
|
||
|
}
|
||
|
}
|