]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/WallabagBundle/Controller/DefaultController.php
symfony is there
[github/wallabag/wallabag.git] / src / WallabagBundle / Controller / DefaultController.php
CommitLineData
93fd4692
NL
1<?php
2
3namespace WallabagBundle\Controller;
4
5use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
6use Symfony\Bundle\FrameworkBundle\Controller\Controller;
7
8class DefaultController extends Controller
9{
10 /**
11 * @Route("/app/index", name="homepage")
12 */
13 public function indexAction()
14 {
15 return $this->render('default/index.html.twig');
16 }
17}