Unlock this challenge:
Suppose I have a simple controller that extends Symfony\Bundle\FrameworkBundle\Controller\AbstractController. This time, in one of its actions, I want to return a JSON response instead of HTML. What would the return statement look like?
Symfony\Bundle\FrameworkBundle\Controller\AbstractController
return $this->json([/* … */])
return new JsonResponse([/* … */])
return json_encode([/* … */])
Both A) & B) are correct