Arguments the wrong way around.

This commit is contained in:
Greyscale 2020-11-20 10:03:54 +01:00
parent 6b90fada90
commit 37a2f1c484
No known key found for this signature in database
GPG key ID: C6178C19949CFFE3

View file

@ -16,10 +16,10 @@ abstract class AbstractHTMLController extends AbstractController
protected string $pageNotFoundTemplate = '404.html.twig';
public function __construct(
Twig $twig,
Logger $logger,
DebugBar $debugBar,
CacheProvider $cacheProvider
CacheProvider $cacheProvider,
Twig $twig,
DebugBar $debugBar
) {
parent::__construct($logger, $cacheProvider);
$this->twig = $twig;