<?php
namespace App\Controller\snippets;
use Pimcore\Controller\FrontendController;
use Symfony\Component\HttpFoundation\Response;
class FooterSnippetController extends FrontendController
{
public function renderAction(): Response
{
return $this->render('snippets/footer.html.twig');
}
}