gist/src/Gist/Controller/HomeController.php
2015-05-05 20:33:05 +02:00

19 lines
328 B
PHP

<?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');
}
}