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;
use Symfony\Component\HttpFoundation\Response;
/** {@inheritDoc} */
class DefaultController extends Controller
{
/**
* @Route("/", name="index")
* @return Response
*/
public function indexAction()
return $this->redirectToRoute('nelmio_api_doc_index');
}