<?phpdeclare(strict_types=1);namespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class DefaultController extends AbstractController{ #[Route('/')] public function main(): Response { return new Response('<html><body>Nothing to see here</body></html>'); }}