PlaintextController.php 326 B

123456789101112131415
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Component\HttpFoundation\Response;
  4. use Symfony\Component\Routing\Annotation\Route;
  5. class PlaintextController
  6. {
  7. #[Route('/plaintext')]
  8. public function plaintext(): Response
  9. {
  10. return new Response('Hello, World!', 200, ['Content-Type' => 'text/plain']);
  11. }
  12. }