<?phpnamespace App\Controller\Mvc;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\Routing\Annotation\Route;class TokowakuController extends AbstractController{ /** * @Route ("/tokowaku", name="tokowaku", methods={"GET"}) */ public function index() { return $this->render('pages/tokowaku/index.html.twig', []); }}