webnotify/src/NotifyBundle/Controller/DefaultController.php
2016-02-20 19:14:23 +01:00

18 lines
360 B
PHP

<?php
namespace NotifyBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
class DefaultController extends Controller
{
/**
* @Route("/")
*/
public function indexAction()
{
return $this->render('NotifyBundle:Default:index.html.twig');
}
}