Files
wallabag/src/WallabagBundle/Controller/DefaultController.php
Nicolas Lœuillet 93fd4692f6 symfony is there
2015-01-22 08:30:07 +01:00

18 lines
375 B
PHP

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