for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ApiBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\JsonResponse;
class DefaultController extends Controller
{
public function whoAction()
return new JsonResponse(['name' => 'Daniel Oliveira <[email protected]>']);
}