app/Plugin/CustomerClassOnlyPage4/Controller/ErrorController.php line 38

Open in your IDE?
  1. <?php
  2. /*
  3.  * Copyright (C) 2019 Akira Kurozumi <info@a-zumi.net>.
  4.  *
  5.  * This library is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Lesser General Public
  7.  * License as published by the Free Software Foundation; either
  8.  * version 2.1 of the License, or (at your option) any later version.
  9.  *
  10.  * This library is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * Lesser General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU Lesser General Public
  16.  * License along with this library; if not, write to the Free Software
  17.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  18.  * MA 02110-1301  USA
  19.  */
  20. namespace Plugin\CustomerClassOnlyPage4\Controller;
  21. use Eccube\Controller\AbstractController;
  22. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  23. use Symfony\Component\HttpFoundation\Request;
  24. use Symfony\Component\Routing\Annotation\Route;
  25. class ErrorController extends AbstractController
  26. {
  27.     /**
  28.      * @param Request $request
  29.      * @return array
  30.      *
  31.      * @Route("/customer_class_only_page4/customer/class/only", name="plugin_customer_class_only")
  32.      * @Template("CustomerClassOnlyPage4/default/error.twig")
  33.      */
  34.     public function index(Request $request)
  35.     {
  36.         return [];
  37.     }
  38. }