presentations/src/Controller/BaseController.php

18 lines
231 B
PHP
Raw Normal View History

2020-12-26 21:23:15 +00:00
<?php
declare(strict_types=1);
namespace App\Controller;
use Twig\Environment;
abstract class BaseController
{
protected $twig;
public function __construct(Environment $twig)
{
$this->twig = $twig;
}
}