app/Customize/Controller/HelpController.php line 42

Open in your IDE?
  1. <?php
  2. namespace Customize\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\Routing\Annotation\Route;
  5. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  6. class HelpController extends AbstractController
  7. {
  8.     /**
  9.      * FAQ
  10.      *
  11.      * @Route("faq", name="faq", methods={"GET"})
  12.      * @Template("Help/faq.twig")
  13.      * @return array<string, mixed>
  14.      */
  15.     public function faq()
  16.     {
  17.         return [];
  18.     }
  19.     /**
  20.      * プライバシーポリシー
  21.      *
  22.      * @Route("privacy", name="privacy", methods={"GET"})
  23.      * @Template("Help/privacy.twig")
  24.      * @return array<string, mixed>
  25.      */
  26.     public function privacy()
  27.     {
  28.         return [];
  29.     }
  30.     /**
  31.      * 会社概要
  32.      *
  33.      * @Route("about", name="about", methods={"GET"})
  34.      * @Template("Help/about.twig")
  35.      * @return array<string, mixed>
  36.      */
  37.     public function about()
  38.     {
  39.         return [];
  40.     }
  41.     /**
  42.      * 特定商法取引法に基づく表記
  43.      *
  44.      * @Route("tradelaw", name="tradelaw", methods={"GET"})
  45.      * @Template("Help/tradelaw.twig")
  46.      * @return array<string, mixed>
  47.      */
  48.     public function tradeLaw()
  49.     {
  50.         return [];
  51.     }
  52. }