1
0
Fork 0
forked from deblan/gist
gist/src/Gist/Controller/HomeController.php

19 lines
328 B
PHP
Raw Normal View History

2015-05-05 20:33:05 +02:00
<?php
namespace Gist\Controller;
use Silex\Application;
use Symfony\Component\HttpFoundation\Request;
/**
* Class HomeController
* @author Simon Vieille
*/
class HomeController
{
public function indexAction(Request $request, Application $app)
{
return $app['twig']->render('Home/index.html.twig');
}
}