src/Hona/WebBundle/Controller/DefaultController.php line 14

Open in your IDE?
  1. <?php
  2. namespace Hona\WebBundle\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\Controller;
  4. use Symfony\Component\Routing\Annotation\Route;
  5. use Symfony\Component\HttpFoundation\Request;
  6. class DefaultController extends Controller
  7. {
  8.     /**
  9.      * @Route("/", name="index_web")
  10.      */
  11.     public function indexAction(Request $request)
  12.     {
  13.         return $this->render('@HonaWeb/Default/policy.html.twig', array(
  14.             'onlyMetas' => true
  15.         ));
  16.     }
  17. }