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;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
/**
* @author Koen Vinken <[email protected]>
*/
class DefaultController extends Controller
{
* @Route("/")
public function indexAction()
return $this->render('AppBundle:Default:index.html.twig');
}