src/EventListener/ContentNegotiationListener.php line 11

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\EventListener;
  4. use Symfony\Component\HttpKernel\Event\GetResponseEvent;
  5. final class ContentNegotiationListener
  6. {
  7.     public function __invoke(GetResponseEvent $event): void
  8.     {
  9.     }
  10. }