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 Symfony\Component\HttpFoundation\RedirectResponse;
use Sensio\Bundle\FrameworkExtraBundle\Configuration as Sensio;
/**
* Class DefaultController
*
* @package AppBundle\Controller
*/
class DefaultController extends Controller
{
* @SENSIO\Route("/")
* @return RedirectResponse
public function indexAction()
return $this->redirectToRoute('nelmio_api_doc_index');
}