rater/src/Controller/IndexController.php

19 lines
341 B
PHP
Raw Normal View History

2026-06-02 01:04:08 +02:00
<?php
namespace App\Controller;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Attribute\Route;
class IndexController
{
#[Route('/')]
public function index(): Response
{
return new Response(
'<html><head><title>Test</title></head><body>Body</body></html>'
);
}
}