for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\RedirectResponse;
/**
* Class DefaultController
* @package App\Controller
*/
class DefaultController extends AbstractController
{
* @Route("/", name="index", methods={"GET"})
*
* @return Response
public function index()
return $this->render('index.html.twig');
}