src/Controller/InfraDockerController.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Form\CodeblockType;
  4. use App\Form\VardumpType;
  5. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  6. use Symfony\Component\HttpFoundation\Request;
  7. use Symfony\Component\HttpFoundation\Response;
  8. use Symfony\Component\Routing\Annotation\Route;
  9. class InfraDockerController extends AbstractController
  10. {
  11.     #[Route('/infraDocker'name'infraDocker')]
  12.     public function index(Request $request): Response
  13.     {
  14.         $parameters = [
  15.             'controller_name' => 'InfraDockerController',
  16.         ];
  17.         return $this->render('infra/docker/index.html.twig'$parameters);
  18.     }
  19. }