Forwarded to ExceptionAction (43af9e)

Exceptions

No resource associated to "123".

Exception

ApiPlatform\Exception\ InvalidArgumentException

  1.         // TODO: 3.0 remove collection/item
  2.         $parameters['_api_operation_name'] = $parameters['_api_operation_name'] ?? $parameters['_api_collection_operation_name'] ?? $parameters['_api_item_operation_name'] ?? $parameters['_api_subresource_operation_name'] ?? null;
  3.         if (!isset($parameters['_api_resource_class'], $parameters['_api_operation_name'])) {
  4.             throw new InvalidArgumentException(sprintf('No resource associated to "%s".'$iri));
  5.         }
  6.         $operation $parameters['_api_operation'] = $this->resourceMetadataCollectionFactory->create($parameters['_api_resource_class'])->getOperation($parameters['_api_operation_name']);
  7.         if ($operation instanceof CollectionOperationInterface) {
  1.         foreach ($filters as $filter) {
  2.             if (is_array($filter)) {
  3.                 $entities array_merge($entitiesarray_map(fn($v) => $this->iriConverter->getResourceFromIri($v), $filter));
  4.             } else {
  5.                 $entities[] = $this->iriConverter->getResourceFromIri($filter);
  6.             }
  7.         }
  8.         $entities array_unique($entities);
  9.         $grouped = [];
  10.         foreach ($entities as $entity) {
AbstractAutocompleteService->parseEntities() in src/ApiPlatform/Provider/AutocompleteProviders/DoctorAutocompleteService.php (line 183)
  1.     }
  2.     protected function applyUserFilters(QueryBuilder $qbstring $class, array $filters, array $fields): void
  3.     {
  4.         $paths = [];
  5.         $entities $this->parseEntities($filters);
  6.         foreach ($entities as $entityClass => $entity) {
  7.             $path null;
  8.             switch ($class) {
  9.                 case DoctorSpecialization::class:
DoctorAutocompleteService->applyUserFilters() in src/ApiPlatform/Provider/AutocompleteProviders/DoctorAutocompleteService.php (line 69)
  1.             $qb
  2.                 ->orderBy('label''ASC')
  3.                 ->setParameter('class'$class)
  4.             ;
  5.             $this->applyUserFilters($qb$class$context['filters'], $fields);
  6.             $results = (array)$this->applyFilters($qb$class$operation$context)->getIterator();
  7.             $request $this->requestStack->getMainRequest();
  8.             foreach ($results as $k => $result) {
  9.                 $count $this->em->getRepository(Opinion::class)->countBySite($request->attributes->get('site'), $this->em->getReference(Doctor::class, $result->getId()));
  10.                 $results[$k]->setAdditionalData([
DoctorAutocompleteService->provide() in src/ApiPlatform/Provider/AutocompleteProvider.php (line 31)
  1.         if ($autocompleteService === null) {
  2.             throw new RuntimeException('Provider "AutocompleteProvider" requires type');
  3.         }
  4.         $results $autocompleteService->provide($operation$uriVariables$context);
  5.         if (($uriVariables['id'] ?? null) && is_array($results) && !count($results)) {
  6.             throw new NotFoundHttpException();
  7.         }
  1.             }
  2.             /** @var ProviderInterface */
  3.             $provider $this->locator->get($provider);
  4.             return $provider->provide($operation$uriVariables$context);
  5.         }
  6.         throw new RuntimeException(sprintf('Provider not found on operation "%s"'$operation->getName()));
  7.     }
  8. }
  1.         $parameters $request->attributes->all();
  2.         $resourceClass $operation->getClass() ?? $attributes['resource_class'];
  3.         try {
  4.             $uriVariables $this->getOperationUriVariables($operation$parameters$resourceClass);
  5.             $data $this->provider->provide($operation$uriVariables$context);
  6.         } catch (InvalidIdentifierException $e) {
  7.             throw new NotFoundHttpException('Invalid identifier value or configuration.'$e);
  8.         } catch (InvalidUriVariableException $e) {
  9.             throw new NotFoundHttpException('Invalid identifier value or configuration.'$e);
  10.         }
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function handleRaw(Request $requestint $type self::MAIN_REQUEST): Response
  3.     {
  4.         // request
  5.         $event = new RequestEvent($this$request$type);
  6.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  7.         if ($event->hasResponse()) {
  8.             return $this->filterResponse($event->getResponse(), $request$type);
  9.         }
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle() in public/index.php (line 73)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs

Level Channel Message
INFO 16:18:49 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "Elao\Enum\Bridge\Symfony\Bundle\ElaoEnumBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "ApiPlatform\Symfony\Bundle\ApiPlatformBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "ApiPlatform\Symfony\Bundle\ApiPlatformBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "BenTools\WebPushBundle\WebPushBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "Lexik\Bundle\TranslationBundle\LexikTranslationBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: The Liip\ImagineBundle\Templating\FilterTrait trait is deprecated since version 2.7 and will be removed in 3.0; use Twig instead.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: The Liip\ImagineBundle\Templating\FilterExtension class is deprecated since version 2.7 and will be removed in 3.0; configure "liip_imagine.twig.mode" to "lazy" instead.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since api-platform/core 2.7: The $exceptionOnNoToken parameter in "ApiPlatform\Symfony\Security\ResourceAccessChecker::__construct()" is deprecated and will always be false in 3.0, you should stop using it.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since api-platform/core 2.7: Using "api_platform.iri_converter.legacy" is deprecated since API Platform 2.7. Use "ApiPlatform\Api\IriConverterInterface" instead.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\AutocompleteNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\ConstraintViolationListNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\ContentTemplateTypeNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\DateTimeNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\DoctorNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\DoctorSlotsNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\FileTypeNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\HydraConstraintViolationListNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\InstitutionNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\OpinionDenormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\OrderDenormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\PackageNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\PatientDenormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\UserPackageNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "ApiPlatform\RamseyUuid\Serializer\UuidDenormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\HydraConstraintViolationListNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\ConstraintViolationListNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "ApiPlatform\OpenApi\Serializer\ApiGatewayNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "ApiPlatform\OpenApi\Serializer\ApiGatewayNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "ApiPlatform\OpenApi\Serializer\ApiGatewayNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "ApiPlatform\OpenApi\Serializer\ApiGatewayNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "Elao\Enum\Bridge\Symfony\Serializer\Normalizer\EnumNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "ApiPlatform\Hydra\Serializer\DocumentationNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "ApiPlatform\Hydra\Serializer\EntrypointNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "ApiPlatform\Hydra\Serializer\ErrorNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "ApiPlatform\Problem\Serializer\ErrorNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\ApiNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Allowing plain identifiers as argument of "ApiPlatform\Serializer\AbstractItemNormalizer" is deprecated since API Platform 2.7 and will not be possible anymore in API Platform 3.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "App\Normalizer\ApiNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "ApiPlatform\Hydra\Serializer\CollectionFiltersNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/serializer 6.3: Not implementing the "NormalizerInterface::getSupportedTypes()" in "ApiPlatform\JsonLd\Serializer\ObjectNormalizer" is deprecated.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Version detection logic for MySQL will change in DBAL 4. Please specify the version as the server reports it, e.g. "10.9.3-MariaDB" instead of "mariadb-10.9". (AbstractMySQLDriver.php:171 called by AbstractMySQLDriver.php:44, https://github.com/doctrine/dbal/pull/5779, package doctrine/orm)
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Support for MariaDB < 10.4 is deprecated and will be removed in DBAL 4. Consider upgrading to a more recent version of MariaDB. (AbstractMySQLDriver.php:61 called by AbstractDriverMiddleware.php:68, https://github.com/doctrine/dbal/pull/6110, package doctrine/dbal)
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "App\EventSubscriber\DoctorSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "App\EventSubscriber\DoctrineSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Knp\DoctrineBehaviors\EventSubscriber\BlameableEventSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Knp\DoctrineBehaviors\EventSubscriber\LoggableEventSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Knp\DoctrineBehaviors\EventSubscriber\SluggableEventSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Knp\DoctrineBehaviors\EventSubscriber\SoftDeletableEventSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Knp\DoctrineBehaviors\EventSubscriber\TimestampableEventSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Knp\DoctrineBehaviors\EventSubscriber\TranslatableEventSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Knp\DoctrineBehaviors\EventSubscriber\TreeEventSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Knp\DoctrineBehaviors\EventSubscriber\UuidableEventSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::eraseCredentials()" might add "void" as a native return type declaration in the future. Do the same in implementation "App\Entity\User" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:18:49 doctrine Connecting with parameters {params}
{
    "params": {
        "dbname": "erecepta_dev",
        "host": "127.0.0.1",
        "port": "3306",
        "user": "erecepta_dev",
        "password": "<redacted>",
        "use_savepoints": true,
        "driver": "pdo_mysql",
        "idle_connection_ttl": 600,
        "driverOptions": [],
        "serverVersion": "mariadb-10.3.27",
        "defaultTableOptions": {
            "collation": "utf8mb4_unicode_ci"
        },
        "charset": "utf8mb4"
    }
}
DEBUG 16:18:49 doctrine Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.token AS token_3, t0.email AS email_4, t0.email_title AS email_title_5, t0.email_title_sick_leave AS email_title_sick_leave_6, t0.logo_url AS logo_url_7, t0.faq_url AS faq_url_8, t0.contact_url AS contact_url_9, t0.rule_url AS rule_url_10, t0.privacy_policy_url AS privacy_policy_url_11, t0.sms_sender AS sms_sender_12, t0.sms_content AS sms_content_13, t0.url AS url_14, t0.has_refund AS has_refund_15, t0.slug AS slug_16, t0.iframe_head_text AS iframe_head_text_17, t0.iframe_top_text AS iframe_top_text_18, t0.hash AS hash_19, t0.virtual_ AS virtual__20, t0.redirect AS redirect_21, t0.default_api_state AS default_api_state_22, t0.show_top_bar AS show_top_bar_23, t0.top_bar_message AS top_bar_message_24, t0.top_bar_bg_color AS top_bar_bg_color_25, t0.top_bar_text_color AS top_bar_text_color_26, t0.api AS api_27, t0.logo_id AS logo_id_28 FROM site t0 WHERE t0.id = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.token AS token_3, t0.email AS email_4, t0.email_title AS email_title_5, t0.email_title_sick_leave AS email_title_sick_leave_6, t0.logo_url AS logo_url_7, t0.faq_url AS faq_url_8, t0.contact_url AS contact_url_9, t0.rule_url AS rule_url_10, t0.privacy_policy_url AS privacy_policy_url_11, t0.sms_sender AS sms_sender_12, t0.sms_content AS sms_content_13, t0.url AS url_14, t0.has_refund AS has_refund_15, t0.slug AS slug_16, t0.iframe_head_text AS iframe_head_text_17, t0.iframe_top_text AS iframe_top_text_18, t0.hash AS hash_19, t0.virtual_ AS virtual__20, t0.redirect AS redirect_21, t0.default_api_state AS default_api_state_22, t0.show_top_bar AS show_top_bar_23, t0.top_bar_message AS top_bar_message_24, t0.top_bar_bg_color AS top_bar_bg_color_25, t0.top_bar_text_color AS top_bar_text_color_26, t0.api AS api_27, t0.logo_id AS logo_id_28 FROM site t0 WHERE t0.id = ?",
    "params": {
        "1": "3"
    },
    "types": {
        "1": 1
    }
}
INFO 16:18:49 php User Deprecated: Method "Symfony\Component\Validator\Constraint::getTargets()" might add "string|array" as a native return type declaration in the future. Do the same in child class "App\Validator\Constraints\HasPreviousOrder" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Method "Symfony\Component\Validator\Constraint::getTargets()" might add "string|array" as a native return type declaration in the future. Do the same in child class "App\Validator\Constraints\UniqueUser" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 16:18:49 php User Deprecated: Method Doctrine\ORM\Event\LifecycleEventArgs::getEntity() is deprecated and will be removed in Doctrine ORM 3.0. Use getObject() instead. (LifecycleEventArgs.php:44 called by TranslatableEventSubscriber.php:164, https://github.com/doctrine/orm/issues/9875, package doctrine/orm)
{
    "exception": {}
}
INFO 16:18:49 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://dev.e-recepta.net/_profiler/latest?ip=216.73.216.49&type=request",
    "method": "GET"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ForcedSslListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ForcedSslListener::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "App\EventSubscriber\RequestSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\RequestSubscriber::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "App\EventSubscriber\PreLogin::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\PreLogin::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "App\EventSubscriber\ApiLoginSubscriber::onLogin".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\ApiLoginSubscriber::onLogin"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "App\EventSubscriber\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\DeserializeListener::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequestPrettyUrls".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequestPrettyUrls"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 16:18:49 event Notified event "kernel.request" to listener "CoopTilleuls\UrlSignerBundle\EventListener\ValidateSignedRouteListener::validateSignedRoute".
{
    "event": "kernel.request",
    "listener": "CoopTilleuls\\UrlSignerBundle\\EventListener\\ValidateSignedRouteListener::validateSignedRoute"
}
DEBUG 16:18:49 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 16:18:49 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 16:18:49 event Notified event "kernel.controller" to listener "App\EventSubscriber\RequestSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "App\\EventSubscriber\\RequestSubscriber::onKernelController"
}
DEBUG 16:18:49 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 16:18:49 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 16:18:49 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 16:18:49 event Notified event "kernel.controller_arguments" to listener "ContainerR8z5isN\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerR8z5isN\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 16:18:49 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ForcedSslListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ForcedSslListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "App\EventSubscriber\RequestSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\RequestSubscriber::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "App\EventSubscriber\PreLogin::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\PreLogin::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "App\EventSubscriber\ApiLoginSubscriber::onLogin".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\ApiLoginSubscriber::onLogin"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "App\EventSubscriber\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\DeserializeListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequestPrettyUrls".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequestPrettyUrls"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "CoopTilleuls\UrlSignerBundle\EventListener\ValidateSignedRouteListener::validateSignedRoute".
{
    "event": "kernel.request",
    "listener": "CoopTilleuls\\UrlSignerBundle\\EventListener\\ValidateSignedRouteListener::validateSignedRoute"
}
DEBUG 16:18:50 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 16:18:50 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 16:18:50 event Notified event "kernel.controller" to listener "App\EventSubscriber\RequestSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "App\\EventSubscriber\\RequestSubscriber::onKernelController"
}
DEBUG 16:18:50 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 16:18:50 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 16:18:50 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 16:18:50 event Notified event "kernel.controller_arguments" to listener "ContainerR8z5isN\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerR8z5isN\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 16:18:50 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
INFO 16:18:50 php User Deprecated: Since nelmio/security-bundle 3.4.0: The "Nelmio\SecurityBundle\EventListener\XssProtectionListener" class is deprecated, use Content Security Policy without allowing "unsafe-inline" scripts instead.
{
    "exception": {}
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\WebpackEncoreBundle\EventListener\PreLoadAssetsEventListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\PreLoadAssetsEventListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "ApiPlatform\Hydra\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "ApiPlatform\\Hydra\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "ApiPlatform\Symfony\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "ApiPlatform\\Symfony\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentTypeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentTypeListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ForcedSslListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ForcedSslListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ReferrerPolicyListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ReferrerPolicyListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "App\EventSubscriber\RequestSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "App\\EventSubscriber\\RequestSubscriber::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\Mercure\EventSubscriber\SetCookieSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Mercure\\EventSubscriber\\SetCookieSubscriber::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ClickjackingListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ClickjackingListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\XssProtectionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\XssProtectionListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "ApiPlatform\HttpCache\EventListener\AddHeadersListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "ApiPlatform\\HttpCache\\EventListener\\AddHeadersListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 16:18:50 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 16:18:50 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 16:18:50 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 16:18:50 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ForcedSslListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ForcedSslListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "App\EventSubscriber\RequestSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\RequestSubscriber::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "App\EventSubscriber\PreLogin::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\PreLogin::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "App\EventSubscriber\ApiLoginSubscriber::onLogin".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\ApiLoginSubscriber::onLogin"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "App\EventSubscriber\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\DeserializeListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequestPrettyUrls".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequestPrettyUrls"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "CoopTilleuls\UrlSignerBundle\EventListener\ValidateSignedRouteListener::validateSignedRoute".
{
    "event": "kernel.request",
    "listener": "CoopTilleuls\\UrlSignerBundle\\EventListener\\ValidateSignedRouteListener::validateSignedRoute"
}
DEBUG 16:18:50 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 16:18:50 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 16:18:50 event Notified event "kernel.controller" to listener "App\EventSubscriber\RequestSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "App\\EventSubscriber\\RequestSubscriber::onKernelController"
}
DEBUG 16:18:50 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 16:18:50 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 16:18:50 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 16:18:50 event Notified event "kernel.controller_arguments" to listener "ContainerR8z5isN\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerR8z5isN\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 16:18:50 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\WebpackEncoreBundle\EventListener\PreLoadAssetsEventListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\PreLoadAssetsEventListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "ApiPlatform\Hydra\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "ApiPlatform\\Hydra\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "ApiPlatform\Symfony\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "ApiPlatform\\Symfony\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentTypeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentTypeListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ForcedSslListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ForcedSslListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ReferrerPolicyListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ReferrerPolicyListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "App\EventSubscriber\RequestSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "App\\EventSubscriber\\RequestSubscriber::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\Mercure\EventSubscriber\SetCookieSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Mercure\\EventSubscriber\\SetCookieSubscriber::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ClickjackingListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ClickjackingListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Nelmio\SecurityBundle\EventListener\XssProtectionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\XssProtectionListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "ApiPlatform\HttpCache\EventListener\AddHeadersListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "ApiPlatform\\HttpCache\\EventListener\\AddHeadersListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 16:18:50 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 16:18:50 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 16:18:50 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 16:18:50 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 16:18:50 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 16:18:50 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ForcedSslListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ForcedSslListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "App\EventSubscriber\RequestSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\RequestSubscriber::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Nelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\SecurityBundle\\EventListener\\ContentSecurityPolicyListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\QueryParameterValidateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "App\EventSubscriber\PreLogin::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\PreLogin::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "App\EventSubscriber\ApiLoginSubscriber::onLogin".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\ApiLoginSubscriber::onLogin"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurity".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurity"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "App\EventSubscriber\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\DeserializeListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DenyAccessListener::onSecurityPostDenormalize".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequestPrettyUrls".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequestPrettyUrls"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
DEBUG 16:18:50 event Notified event "kernel.request" to listener "CoopTilleuls\UrlSignerBundle\EventListener\ValidateSignedRouteListener::validateSignedRoute".
{
    "event": "kernel.request",
    "listener": "CoopTilleuls\\UrlSignerBundle\\EventListener\\ValidateSignedRouteListener::validateSignedRoute"
}
DEBUG 16:18:50 event Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
DEBUG 16:18:50 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 16:18:50 event Notified event "kernel.controller" to listener "App\EventSubscriber\RequestSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "App\\EventSubscriber\\RequestSubscriber::onKernelController"
}
DEBUG 16:18:50 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 16:18:50 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 16:18:50 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 16:18:50 event Notified event "kernel.controller_arguments" to listener "ContainerR8z5isN\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerR8z5isN\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 16:18:50 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Trace

InvalidArgumentException
ApiPlatform\Exception\InvalidArgumentException:
No resource associated to "123".

  at vendor/api-platform/core/src/Symfony/Routing/IriConverter.php:78
  at ApiPlatform\Symfony\Routing\IriConverter->getResourceFromIri()
     (src/ApiPlatform/Provider/AutocompleteProviders/AbstractAutocompleteService.php:72)
  at App\ApiPlatform\Provider\AutocompleteProviders\AbstractAutocompleteService->parseEntities()
     (src/ApiPlatform/Provider/AutocompleteProviders/DoctorAutocompleteService.php:183)
  at App\ApiPlatform\Provider\AutocompleteProviders\DoctorAutocompleteService->applyUserFilters()
     (src/ApiPlatform/Provider/AutocompleteProviders/DoctorAutocompleteService.php:69)
  at App\ApiPlatform\Provider\AutocompleteProviders\DoctorAutocompleteService->provide()
     (src/ApiPlatform/Provider/AutocompleteProvider.php:31)
  at App\ApiPlatform\Provider\AutocompleteProvider->provide()
     (vendor/api-platform/core/src/State/CallableProvider.php:43)
  at ApiPlatform\State\CallableProvider->provide()
     (vendor/api-platform/core/src/Symfony/EventListener/ReadListener.php:93)
  at ApiPlatform\Symfony\EventListener\ReadListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:157)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:197)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:73)