for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Controller;
use Libellule\Controller\Controller;
class DefaultController extends Controller
{
/**
* Page d'Accueil
*/
public function home()
return $this->render('bienvenue.html.twig');
}