19 lines
341 B
PHP
19 lines
341 B
PHP
|
|
<?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>'
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|