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