Website/app/backend/TestController.php
Snoweuph 06c94d878d
Some checks failed
Quality Check / QS Backend (push) Successful in 20s
Quality Check / QS Mixed (push) Successful in 32s
Quality Check / QS Frontend (push) Failing after 38s
Use Symfony UX Twig
2024-07-20 08:40:17 +02:00

34 lines
685 B
PHP

<?php
declare(strict_types=1);
namespace App;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\Attribute\AsController;
use Symfony\Component\Routing\Annotation\Route;
use Twig\Environment;
#[AsController]
#[Route(
path: '/',
name: 'test',
methods: [Request::METHOD_GET]
)]
final readonly class TestController
{
public function __construct(
private Environment $twig,
) {
}
public function __invoke(Request $request): Response
{
return new Response(
$this->twig->render(
'sites/index.html.twig'
)
);
}
}