JsonController.php 316 B

1234567891011121314151617
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Component\HttpFoundation\JsonResponse;
  4. use Symfony\Component\Routing\Annotation\Route;
  5. class JsonController
  6. {
  7. /**
  8. * @Route("/json")
  9. */
  10. public function json(): JsonResponse
  11. {
  12. return new JsonResponse(['message' => 'Hello, World!']);
  13. }
  14. }