defis48/src/Mmi/Bundle/ChallengeBundle/Controller/DefaultController.php
2016-01-12 20:31:48 +01:00

20 lines
405 B
PHP

<?php
namespace Mmi\Bundle\ChallengeBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
class DefaultController extends Controller
{
/**
* @Route("/")
* @Template()
*/
public function indexAction()
{
return [];
}
}