<?php
namespace Customize\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
use Symfony\Component\HttpFoundation\Response;
class ProductAboutController
{
/**
* @Method("GET")
* @Route("/product_about", name="product_about")
* @Template("ProductAbout/index.twig")
*/
public function index()
{
return [];
}
}