for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Web\ApiBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
/**
* Class DefaultController
*
* @category None
* @package Web\ApiBundle\Controller
* @author Martin Pham <[email protected]>
* @license None http://
* @link None
*/
class DefaultController extends Controller
{
* @Route("/")
* @Method({"GET"})
public function indexAction()
return null;
}