for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AppBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
/**
* Class DefaultController.
*/
class DefaultController extends Controller
{
* @return \Symfony\Component\HttpFoundation\Response
public function indexAction()
return $this->render('AppBundle:Default:index.html.twig');
}