app/Customize/Controller/ProductAboutController.php line 17

Open in your IDE?
  1. <?php
  2. namespace Customize\Controller;
  3. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
  4. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
  5. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  6. use Symfony\Component\HttpFoundation\Response;
  7. class ProductAboutController
  8. {
  9.     /**
  10.      * @Method("GET")
  11.      * @Route("/product_about", name="product_about")
  12.      * @Template("ProductAbout/index.twig")
  13.      */
  14.     public function index()
  15.     {
  16.         return [];
  17.     }
  18. }