presentations/src/Controller/BaseController.php
2021-02-18 21:19:12 +00:00

17 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;
}
}