app/Customize/Controller/ProductsSubPageController.php line 35

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.ec-cube.co.jp/
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12.  namespace Customize\Controller;
  13.  use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  14.  use Symfony\Component\Routing\Annotation\Route;
  15.  use Eccube\Controller\AbstractController;
  16. class ProductsSubPageController extends AbstractController
  17. {
  18.     /**
  19.      * ProductsSubPageController constructor.
  20.      */
  21.     public function __construct()
  22.     {
  23.     }
  24.     /**
  25.      * apply_sticker_cutting
  26.      *
  27.      * @Route("/products/apply_sticker_cutting", name="products_apply_sticker_cutting", methods={"GET"})
  28.      * @Template("Product/apply_sticker_cutting.twig")
  29.      */
  30.     public function index()
  31.     {
  32.         return [];
  33.     }
  34. }