src/JuridicusBundle/Controller/VorteileController.php line 20

Open in your IDE?
  1. <?php
  2. namespace JF\JuridicusBundle\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
  5. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
  6. /**
  7.  * Vorteile controller.
  8.  *
  9.  */
  10. class VorteileController extends AbstractController
  11. {
  12.     /**
  13.      * Lists current prices.
  14.      * @Route("/vorteile", name="vorteile")
  15.      */
  16.     public function indexAction()
  17.     {
  18.         return $this->render("@JFJuridicusBundle/Vorteile/index.html.twig", array(
  19.         ));
  20.     }
  21. }