<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
*
* http://www.ec-cube.co.jp/
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
//↓変更
namespace Customize\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
use Symfony\Component\Routing\Annotation\Route;
//↓追加
use Eccube\Controller\AbstractController;
//class名を変更
class QuestionController extends AbstractController
{
// @Routeと@Templateを変更
/**
* @Route("/question", name="question", methods={"GET"})
* @Template("Help/question.twig")
*/
public function index()
{
return [];
}
}