for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* DefaultController controller de l'application.
*
* PHP Version 7
* @author Quétier Laurent <[email protected]>
* @copyright 2018 Dev-Int GLSR
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version GIT: $Id$
* @link https://github.com/Dev-Int/glsr
*/
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\Routing\Annotation\Route;
* Description of DefaultController
* @category Controller
class DefaultController extends Controller
{
* @Route("/", name="home")
public function index()
return $this->render('default/index.html.twig');
}