]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/WallabagBundle/Controller/DefaultController.php
symfony is there
[github/wallabag/wallabag.git] / src / WallabagBundle / Controller / DefaultController.php
1 <?php
2
3 namespace WallabagBundle\Controller;
4
5 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
6 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
7
8 class 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 }