webnotify/src/NotifyBundle/Controller/DefaultController.php

18 lines
360 B
PHP
Raw Normal View History

2016-02-20 19:14:23 +01:00
<?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');
}
}