<?php
namespace App\Controller;
use App\Form\CodeblockType;
use App\Form\VardumpType;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class InfraDockerController extends AbstractController
{
#[Route('/infraDocker', name: 'infraDocker')]
public function index(Request $request): Response
{
$parameters = [
'controller_name' => 'InfraDockerController',
];
return $this->render('infra/docker/index.html.twig', $parameters);
}
}