<?php
namespace Kzl\FrameworkBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
class TopController extends AbstractController
{
public function index(): Response
{
return $this->render('top/index.html.twig', [
'controller_name' => 'TopController',
]);
}
}