Error 500 Internal Server Error

POST https://test.forca.run/auth

Forwarded to ErrorController (88a7b3)

Exceptions

An exception occurred while executing a query: SQLSTATE[42P01]: Undefined table: 7 ERROR: relation "app_refresh_token_id_seq" does not exist
LINE 1: SELECT NEXTVAL('app_refresh_token_id_seq')
^

Exceptions 3

Doctrine\DBAL\Exception\ TableNotFoundException

Show exception properties
Doctrine\DBAL\Exception\TableNotFoundException {#399
  -query: Doctrine\DBAL\Query {#405
    -sql: "SELECT NEXTVAL('app_refresh_token_id_seq')"
    -params: []
    -types: []
  }
}
  1. case '42703':
  2. return new InvalidFieldNameException($exception, $query);
  3. case '42P01':
  4. return new TableNotFoundException($exception, $query);
  5. case '42P07':
  6. return new TableExistsException($exception, $query);
  7. case '08006':
  1. private function handleDriverException(
  2. Driver\Exception $driverException,
  3. ?Query $query
  4. ): DriverException {
  5. $this->exceptionConverter ??= $this->_driver->getExceptionConverter();
  6. $exception = $this->exceptionConverter->convert($driverException, $query);
  7. if ($exception instanceof ConnectionLost) {
  8. $this->close();
  9. }
in vendor/doctrine/dbal/src/Connection.php -> handleDriverException (line 1918)
  1. Driver\Exception $e,
  2. string $sql,
  3. array $params = [],
  4. array $types = []
  5. ): DriverException {
  6. return $this->handleDriverException($e, new Query($sql, $params, $types));
  7. }
  8. /** @internal */
  9. final public function convertException(Driver\Exception $e): DriverException
  10. {
in vendor/doctrine/dbal/src/Connection.php -> convertExceptionDuringQuery (line 1111)
  1. $result = $connection->query($sql);
  2. }
  3. return new Result($result, $this);
  4. } catch (Driver\Exception $e) {
  5. throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
  6. } finally {
  7. if ($logger !== null) {
  8. $logger->stopQuery();
  9. }
  10. }
in vendor/doctrine/dbal/src/Connection.php -> executeQuery (line 627)
  1. *
  2. * @throws Exception
  3. */
  4. public function fetchOne(string $query, array $params = [], array $types = [])
  5. {
  6. return $this->executeQuery($query, $params, $types)->fetchOne();
  7. }
  8. /**
  9. * Whether an actual connection to the database is established.
  10. *
  1. if ($connection instanceof PrimaryReadReplicaConnection) {
  2. $connection->ensureConnectedToPrimary();
  3. }
  4. $this->nextValue = (int) $connection->fetchOne($sql);
  5. $this->maxValue = $this->nextValue + $this->allocationSize;
  6. }
  7. return $this->nextValue++;
  8. }
in vendor/doctrine/orm/src/UnitOfWork.php -> generateId (line 1049)
  1. }
  2. $idGen = $class->idGenerator;
  3. if (! $idGen->isPostInsertGenerator()) {
  4. $idValue = $idGen->generateId($this->em, $entity);
  5. if (! $idGen instanceof AssignedGenerator) {
  6. $idValue = [$class->getSingleIdentifierFieldName() => $this->convertSingleFieldIdentifierToPHPValue($class, $idValue)];
  7. $class->setIdentifierValues($entity, $idValue);
in vendor/doctrine/orm/src/UnitOfWork.php -> persistNew (line 2071)
  1. }
  2. break;
  3. case self::STATE_NEW:
  4. $this->persistNew($class, $entity);
  5. break;
  6. case self::STATE_REMOVED:
  7. // Entity becomes managed again
  8. unset($this->entityDeletions[$oid]);
in vendor/doctrine/orm/src/UnitOfWork.php -> doPersist (line 2028)
  1. */
  2. public function persist($entity)
  3. {
  4. $visited = [];
  5. $this->doPersist($entity, $visited);
  6. }
  7. /**
  8. * Persists an entity as part of the current unit of work.
  9. *
  1. throw ORMInvalidArgumentException::invalidObject('EntityManager#persist()', $entity);
  2. }
  3. $this->errorIfClosed();
  4. $this->unitOfWork->persist($entity);
  5. }
  6. /**
  7. * Removes an entity instance.
  8. *
  1. *
  2. * @return void
  3. */
  4. public function save(RefreshTokenInterface $refreshToken, $andFlush = true)
  5. {
  6. $this->objectManager->persist($refreshToken);
  7. if ($andFlush) {
  8. $this->objectManager->flush();
  9. }
  10. }
  1. $data[$this->returnExpirationParameterName] = ($refreshToken) ? $refreshToken->getValid()->getTimestamp() : 0;
  2. }
  3. } else {
  4. $refreshToken = $this->refreshTokenGenerator->createForUserWithTtl($user, $this->ttl);
  5. $this->refreshTokenManager->save($refreshToken);
  6. $refreshTokenString = $refreshToken->getRefreshToken();
  7. $data[$this->tokenParameterName] = $refreshTokenString;
  8. if ($this->returnExpiration) {
  9. $data[$this->returnExpirationParameterName] = $refreshToken->getValid()->getTimestamp();
  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. $response = new JWTAuthenticationSuccessResponse($jwt, [], $jwtCookies);
  3. $event = new AuthenticationSuccessEvent(['token' => $jwt], $user, $response);
  4. $this->dispatcher->dispatch($event, Events::AUTHENTICATION_SUCCESS);
  5. $responseData = $event->getData();
  6. if ($jwtCookies && $this->removeTokenFromBodyWhenCookiesUsed) {
  7. unset($responseData['token']);
  8. }
  1. /**
  2. * {@inheritdoc}
  3. */
  4. public function onAuthenticationSuccess(Request $request, TokenInterface $token): Response
  5. {
  6. return $this->handleAuthenticationSuccess($token->getUser());
  7. }
  8. /**
  9. * @return Response
  10. */
  1. }
  2. }
  3. public function onAuthenticationSuccess(Request $request, TokenInterface $token): ?Response
  4. {
  5. return $this->handler->onAuthenticationSuccess($request, $token);
  6. }
  7. }
  1. {
  2. if (null === $this->successHandler) {
  3. return null; // let the original request continue
  4. }
  5. return $this->successHandler->onAuthenticationSuccess($request, $token);
  6. }
  7. public function onAuthenticationFailure(Request $request, AuthenticationException $exception): ?Response
  8. {
  9. if (null === $this->failureHandler) {
  1. public function onAuthenticationSuccess(Request $request, TokenInterface $token, string $firewallName): ?Response
  2. {
  3. $this->authenticated = true;
  4. return $this->authenticator->onAuthenticationSuccess($request, $token, $firewallName);
  5. }
  6. public function onAuthenticationFailure(Request $request, AuthenticationException $exception): ?Response
  7. {
  8. $this->authenticated = false;
  1. private function handleAuthenticationSuccess(TokenInterface $authenticatedToken, Passport $passport, Request $request, AuthenticatorInterface $authenticator, ?TokenInterface $previousToken): ?Response
  2. {
  3. $this->tokenStorage->setToken($authenticatedToken);
  4. $response = $authenticator->onAuthenticationSuccess($request, $authenticatedToken, $this->firewallName);
  5. if ($authenticator instanceof InteractiveAuthenticatorInterface && $authenticator->isInteractive()) {
  6. $loginEvent = new InteractiveLoginEvent($request, $authenticatedToken);
  7. $this->eventDispatcher->dispatch($loginEvent, SecurityEvents::INTERACTIVE_LOGIN);
  8. }
  1. return null;
  2. }
  3. // success! (sets the token on the token storage, etc)
  4. $response = $this->handleAuthenticationSuccess($authenticatedToken, $passport, $request, $authenticator, $previousToken);
  5. if ($response instanceof Response) {
  6. return $response;
  7. }
  8. $this->logger?->debug('Authenticator set no success response: request continues.', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
  1. $this->logger?->debug('Skipping the "{authenticator}" authenticator as it did not support the request.', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
  2. continue;
  3. }
  4. $response = $this->executeAuthenticator($authenticator, $request);
  5. if (null !== $response) {
  6. $this->logger?->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
  7. return $response;
  8. }
  1. if (!$authenticators) {
  2. return null;
  3. }
  4. return $this->executeAuthenticators($authenticators, $request);
  5. }
  6. /**
  7. * @param AuthenticatorInterface[] $authenticators
  8. */
  1. }
  2. public function authenticate(RequestEvent $event): void
  3. {
  4. $request = $event->getRequest();
  5. $response = $this->authenticatorManager->authenticateRequest($request);
  6. if (null === $response) {
  7. return;
  8. }
  9. $event->setResponse($response);
  1. $authenticators[$key] = new TraceableAuthenticator($authenticator);
  2. }
  3. $request->attributes->set('_security_authenticators', $authenticators);
  4. $this->authenticationManagerListener->authenticate($event);
  5. foreach ($authenticators as $authenticator) {
  6. $this->authenticatorsInfo[] = $authenticator->getInfo();
  7. }
  8. }
  1. public function authenticate(RequestEvent $event): void
  2. {
  3. $startTime = microtime(true);
  4. try {
  5. $this->listener->authenticate($event);
  6. } catch (LazyResponseException $e) {
  7. $this->response = $e->getResponse();
  8. throw $e;
  9. } finally {
  1. abstract class AbstractListener implements FirewallListenerInterface
  2. {
  3. final public function __invoke(RequestEvent $event): void
  4. {
  5. if (false !== $this->supports($event->getRequest())) {
  6. $this->authenticate($event);
  7. }
  8. }
  9. public static function getPriority(): int
  10. {
  1. }, $listener, FirewallContext::class)();
  2. $listener($event);
  3. } else {
  4. $wrappedListener = $listener instanceof FirewallListenerInterface ? new WrappedLazyListener($listener) : new WrappedListener($listener);
  5. $wrappedListener($event);
  6. $wrappedListeners[] = $wrappedListener->getInfo();
  7. if (!$authenticatorManagerListener && $listener instanceof TraceableAuthenticatorManagerListener) {
  8. $authenticatorManagerListener = $listener;
  9. }
  10. }
in vendor/symfony/security-http/Firewall.php -> callListeners (line 95)
  1. if (null !== $logoutListener) {
  2. yield $logoutListener;
  3. }
  4. };
  5. $this->callListeners($event, $authenticationListeners());
  6. }
  7. /**
  8. * @return void
  9. */
  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 $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::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. if (!$this->handlingHttpCache) {
  2. $this->resetServices = true;
  3. }
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/vhosts/forca.run/test.forca.run/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Doctrine\DBAL\Driver\PDO\ Exception

SQLSTATE[42P01]: Undefined table: 7 ERROR: relation "app_refresh_token_id_seq" does not exist LINE 1: SELECT NEXTVAL('app_refresh_token_id_seq') ^

  1. } else {
  2. $code = $exception->getCode();
  3. $sqlState = null;
  4. }
  5. return new self($exception->getMessage(), $sqlState, $code, $exception);
  6. }
  7. }
  1. $stmt = $this->connection->query($sql);
  2. assert($stmt instanceof PDOStatement);
  3. return new Result($stmt);
  4. } catch (PDOException $exception) {
  5. throw Exception::new($exception);
  6. }
  7. }
  8. /**
  9. * {@inheritDoc}
  1. return $this->wrappedConnection->prepare($sql);
  2. }
  3. public function query(string $sql): Result
  4. {
  5. return $this->wrappedConnection->query($sql);
  6. }
  7. /**
  8. * {@inheritDoc}
  9. */
  1. public function query(string $sql): Result
  2. {
  3. $this->logger->debug('Executing query: {sql}', ['sql' => $sql]);
  4. return parent::query($sql);
  5. }
  6. public function exec(string $sql): int
  7. {
  8. $this->logger->debug('Executing statement: {sql}', ['sql' => $sql]);
  1. return $this->wrappedConnection->prepare($sql);
  2. }
  3. public function query(string $sql): Result
  4. {
  5. return $this->wrappedConnection->query($sql);
  6. }
  7. /**
  8. * {@inheritDoc}
  9. */
  1. $this->stopwatch?->start('doctrine', 'doctrine');
  2. $query->start();
  3. try {
  4. return parent::query($sql);
  5. } finally {
  6. $query->stop();
  7. $this->stopwatch?->stop('doctrine');
  8. }
  9. }
  1. $this->bindParameters($stmt, $params, $types);
  2. $result = $stmt->execute();
  3. } else {
  4. $result = $connection->query($sql);
  5. }
  6. return new Result($result, $this);
  7. } catch (Driver\Exception $e) {
  8. throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
in vendor/doctrine/dbal/src/Connection.php -> executeQuery (line 627)
  1. *
  2. * @throws Exception
  3. */
  4. public function fetchOne(string $query, array $params = [], array $types = [])
  5. {
  6. return $this->executeQuery($query, $params, $types)->fetchOne();
  7. }
  8. /**
  9. * Whether an actual connection to the database is established.
  10. *
  1. if ($connection instanceof PrimaryReadReplicaConnection) {
  2. $connection->ensureConnectedToPrimary();
  3. }
  4. $this->nextValue = (int) $connection->fetchOne($sql);
  5. $this->maxValue = $this->nextValue + $this->allocationSize;
  6. }
  7. return $this->nextValue++;
  8. }
in vendor/doctrine/orm/src/UnitOfWork.php -> generateId (line 1049)
  1. }
  2. $idGen = $class->idGenerator;
  3. if (! $idGen->isPostInsertGenerator()) {
  4. $idValue = $idGen->generateId($this->em, $entity);
  5. if (! $idGen instanceof AssignedGenerator) {
  6. $idValue = [$class->getSingleIdentifierFieldName() => $this->convertSingleFieldIdentifierToPHPValue($class, $idValue)];
  7. $class->setIdentifierValues($entity, $idValue);
in vendor/doctrine/orm/src/UnitOfWork.php -> persistNew (line 2071)
  1. }
  2. break;
  3. case self::STATE_NEW:
  4. $this->persistNew($class, $entity);
  5. break;
  6. case self::STATE_REMOVED:
  7. // Entity becomes managed again
  8. unset($this->entityDeletions[$oid]);
in vendor/doctrine/orm/src/UnitOfWork.php -> doPersist (line 2028)
  1. */
  2. public function persist($entity)
  3. {
  4. $visited = [];
  5. $this->doPersist($entity, $visited);
  6. }
  7. /**
  8. * Persists an entity as part of the current unit of work.
  9. *
  1. throw ORMInvalidArgumentException::invalidObject('EntityManager#persist()', $entity);
  2. }
  3. $this->errorIfClosed();
  4. $this->unitOfWork->persist($entity);
  5. }
  6. /**
  7. * Removes an entity instance.
  8. *
  1. *
  2. * @return void
  3. */
  4. public function save(RefreshTokenInterface $refreshToken, $andFlush = true)
  5. {
  6. $this->objectManager->persist($refreshToken);
  7. if ($andFlush) {
  8. $this->objectManager->flush();
  9. }
  10. }
  1. $data[$this->returnExpirationParameterName] = ($refreshToken) ? $refreshToken->getValid()->getTimestamp() : 0;
  2. }
  3. } else {
  4. $refreshToken = $this->refreshTokenGenerator->createForUserWithTtl($user, $this->ttl);
  5. $this->refreshTokenManager->save($refreshToken);
  6. $refreshTokenString = $refreshToken->getRefreshToken();
  7. $data[$this->tokenParameterName] = $refreshTokenString;
  8. if ($this->returnExpiration) {
  9. $data[$this->returnExpirationParameterName] = $refreshToken->getValid()->getTimestamp();
  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. $response = new JWTAuthenticationSuccessResponse($jwt, [], $jwtCookies);
  3. $event = new AuthenticationSuccessEvent(['token' => $jwt], $user, $response);
  4. $this->dispatcher->dispatch($event, Events::AUTHENTICATION_SUCCESS);
  5. $responseData = $event->getData();
  6. if ($jwtCookies && $this->removeTokenFromBodyWhenCookiesUsed) {
  7. unset($responseData['token']);
  8. }
  1. /**
  2. * {@inheritdoc}
  3. */
  4. public function onAuthenticationSuccess(Request $request, TokenInterface $token): Response
  5. {
  6. return $this->handleAuthenticationSuccess($token->getUser());
  7. }
  8. /**
  9. * @return Response
  10. */
  1. }
  2. }
  3. public function onAuthenticationSuccess(Request $request, TokenInterface $token): ?Response
  4. {
  5. return $this->handler->onAuthenticationSuccess($request, $token);
  6. }
  7. }
  1. {
  2. if (null === $this->successHandler) {
  3. return null; // let the original request continue
  4. }
  5. return $this->successHandler->onAuthenticationSuccess($request, $token);
  6. }
  7. public function onAuthenticationFailure(Request $request, AuthenticationException $exception): ?Response
  8. {
  9. if (null === $this->failureHandler) {
  1. public function onAuthenticationSuccess(Request $request, TokenInterface $token, string $firewallName): ?Response
  2. {
  3. $this->authenticated = true;
  4. return $this->authenticator->onAuthenticationSuccess($request, $token, $firewallName);
  5. }
  6. public function onAuthenticationFailure(Request $request, AuthenticationException $exception): ?Response
  7. {
  8. $this->authenticated = false;
  1. private function handleAuthenticationSuccess(TokenInterface $authenticatedToken, Passport $passport, Request $request, AuthenticatorInterface $authenticator, ?TokenInterface $previousToken): ?Response
  2. {
  3. $this->tokenStorage->setToken($authenticatedToken);
  4. $response = $authenticator->onAuthenticationSuccess($request, $authenticatedToken, $this->firewallName);
  5. if ($authenticator instanceof InteractiveAuthenticatorInterface && $authenticator->isInteractive()) {
  6. $loginEvent = new InteractiveLoginEvent($request, $authenticatedToken);
  7. $this->eventDispatcher->dispatch($loginEvent, SecurityEvents::INTERACTIVE_LOGIN);
  8. }
  1. return null;
  2. }
  3. // success! (sets the token on the token storage, etc)
  4. $response = $this->handleAuthenticationSuccess($authenticatedToken, $passport, $request, $authenticator, $previousToken);
  5. if ($response instanceof Response) {
  6. return $response;
  7. }
  8. $this->logger?->debug('Authenticator set no success response: request continues.', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
  1. $this->logger?->debug('Skipping the "{authenticator}" authenticator as it did not support the request.', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
  2. continue;
  3. }
  4. $response = $this->executeAuthenticator($authenticator, $request);
  5. if (null !== $response) {
  6. $this->logger?->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
  7. return $response;
  8. }
  1. if (!$authenticators) {
  2. return null;
  3. }
  4. return $this->executeAuthenticators($authenticators, $request);
  5. }
  6. /**
  7. * @param AuthenticatorInterface[] $authenticators
  8. */
  1. }
  2. public function authenticate(RequestEvent $event): void
  3. {
  4. $request = $event->getRequest();
  5. $response = $this->authenticatorManager->authenticateRequest($request);
  6. if (null === $response) {
  7. return;
  8. }
  9. $event->setResponse($response);
  1. $authenticators[$key] = new TraceableAuthenticator($authenticator);
  2. }
  3. $request->attributes->set('_security_authenticators', $authenticators);
  4. $this->authenticationManagerListener->authenticate($event);
  5. foreach ($authenticators as $authenticator) {
  6. $this->authenticatorsInfo[] = $authenticator->getInfo();
  7. }
  8. }
  1. public function authenticate(RequestEvent $event): void
  2. {
  3. $startTime = microtime(true);
  4. try {
  5. $this->listener->authenticate($event);
  6. } catch (LazyResponseException $e) {
  7. $this->response = $e->getResponse();
  8. throw $e;
  9. } finally {
  1. abstract class AbstractListener implements FirewallListenerInterface
  2. {
  3. final public function __invoke(RequestEvent $event): void
  4. {
  5. if (false !== $this->supports($event->getRequest())) {
  6. $this->authenticate($event);
  7. }
  8. }
  9. public static function getPriority(): int
  10. {
  1. }, $listener, FirewallContext::class)();
  2. $listener($event);
  3. } else {
  4. $wrappedListener = $listener instanceof FirewallListenerInterface ? new WrappedLazyListener($listener) : new WrappedListener($listener);
  5. $wrappedListener($event);
  6. $wrappedListeners[] = $wrappedListener->getInfo();
  7. if (!$authenticatorManagerListener && $listener instanceof TraceableAuthenticatorManagerListener) {
  8. $authenticatorManagerListener = $listener;
  9. }
  10. }
in vendor/symfony/security-http/Firewall.php -> callListeners (line 95)
  1. if (null !== $logoutListener) {
  2. yield $logoutListener;
  3. }
  4. };
  5. $this->callListeners($event, $authenticationListeners());
  6. }
  7. /**
  8. * @return void
  9. */
  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 $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::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. if (!$this->handlingHttpCache) {
  2. $this->resetServices = true;
  3. }
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/vhosts/forca.run/test.forca.run/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

PDOException

SQLSTATE[42P01]: Undefined table: 7 ERROR: relation "app_refresh_token_id_seq" does not exist LINE 1: SELECT NEXTVAL('app_refresh_token_id_seq') ^

  1. }
  2. public function query(string $sql): ResultInterface
  3. {
  4. try {
  5. $stmt = $this->connection->query($sql);
  6. assert($stmt instanceof PDOStatement);
  7. return new Result($stmt);
  8. } catch (PDOException $exception) {
  9. throw Exception::new($exception);
  1. }
  2. public function query(string $sql): ResultInterface
  3. {
  4. try {
  5. $stmt = $this->connection->query($sql);
  6. assert($stmt instanceof PDOStatement);
  7. return new Result($stmt);
  8. } catch (PDOException $exception) {
  9. throw Exception::new($exception);
  1. return $this->wrappedConnection->prepare($sql);
  2. }
  3. public function query(string $sql): Result
  4. {
  5. return $this->wrappedConnection->query($sql);
  6. }
  7. /**
  8. * {@inheritDoc}
  9. */
  1. public function query(string $sql): Result
  2. {
  3. $this->logger->debug('Executing query: {sql}', ['sql' => $sql]);
  4. return parent::query($sql);
  5. }
  6. public function exec(string $sql): int
  7. {
  8. $this->logger->debug('Executing statement: {sql}', ['sql' => $sql]);
  1. return $this->wrappedConnection->prepare($sql);
  2. }
  3. public function query(string $sql): Result
  4. {
  5. return $this->wrappedConnection->query($sql);
  6. }
  7. /**
  8. * {@inheritDoc}
  9. */
  1. $this->stopwatch?->start('doctrine', 'doctrine');
  2. $query->start();
  3. try {
  4. return parent::query($sql);
  5. } finally {
  6. $query->stop();
  7. $this->stopwatch?->stop('doctrine');
  8. }
  9. }
  1. $this->bindParameters($stmt, $params, $types);
  2. $result = $stmt->execute();
  3. } else {
  4. $result = $connection->query($sql);
  5. }
  6. return new Result($result, $this);
  7. } catch (Driver\Exception $e) {
  8. throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
in vendor/doctrine/dbal/src/Connection.php -> executeQuery (line 627)
  1. *
  2. * @throws Exception
  3. */
  4. public function fetchOne(string $query, array $params = [], array $types = [])
  5. {
  6. return $this->executeQuery($query, $params, $types)->fetchOne();
  7. }
  8. /**
  9. * Whether an actual connection to the database is established.
  10. *
  1. if ($connection instanceof PrimaryReadReplicaConnection) {
  2. $connection->ensureConnectedToPrimary();
  3. }
  4. $this->nextValue = (int) $connection->fetchOne($sql);
  5. $this->maxValue = $this->nextValue + $this->allocationSize;
  6. }
  7. return $this->nextValue++;
  8. }
in vendor/doctrine/orm/src/UnitOfWork.php -> generateId (line 1049)
  1. }
  2. $idGen = $class->idGenerator;
  3. if (! $idGen->isPostInsertGenerator()) {
  4. $idValue = $idGen->generateId($this->em, $entity);
  5. if (! $idGen instanceof AssignedGenerator) {
  6. $idValue = [$class->getSingleIdentifierFieldName() => $this->convertSingleFieldIdentifierToPHPValue($class, $idValue)];
  7. $class->setIdentifierValues($entity, $idValue);
in vendor/doctrine/orm/src/UnitOfWork.php -> persistNew (line 2071)
  1. }
  2. break;
  3. case self::STATE_NEW:
  4. $this->persistNew($class, $entity);
  5. break;
  6. case self::STATE_REMOVED:
  7. // Entity becomes managed again
  8. unset($this->entityDeletions[$oid]);
in vendor/doctrine/orm/src/UnitOfWork.php -> doPersist (line 2028)
  1. */
  2. public function persist($entity)
  3. {
  4. $visited = [];
  5. $this->doPersist($entity, $visited);
  6. }
  7. /**
  8. * Persists an entity as part of the current unit of work.
  9. *
  1. throw ORMInvalidArgumentException::invalidObject('EntityManager#persist()', $entity);
  2. }
  3. $this->errorIfClosed();
  4. $this->unitOfWork->persist($entity);
  5. }
  6. /**
  7. * Removes an entity instance.
  8. *
  1. *
  2. * @return void
  3. */
  4. public function save(RefreshTokenInterface $refreshToken, $andFlush = true)
  5. {
  6. $this->objectManager->persist($refreshToken);
  7. if ($andFlush) {
  8. $this->objectManager->flush();
  9. }
  10. }
  1. $data[$this->returnExpirationParameterName] = ($refreshToken) ? $refreshToken->getValid()->getTimestamp() : 0;
  2. }
  3. } else {
  4. $refreshToken = $this->refreshTokenGenerator->createForUserWithTtl($user, $this->ttl);
  5. $this->refreshTokenManager->save($refreshToken);
  6. $refreshTokenString = $refreshToken->getRefreshToken();
  7. $data[$this->tokenParameterName] = $refreshTokenString;
  8. if ($this->returnExpiration) {
  9. $data[$this->returnExpirationParameterName] = $refreshToken->getValid()->getTimestamp();
  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. $response = new JWTAuthenticationSuccessResponse($jwt, [], $jwtCookies);
  3. $event = new AuthenticationSuccessEvent(['token' => $jwt], $user, $response);
  4. $this->dispatcher->dispatch($event, Events::AUTHENTICATION_SUCCESS);
  5. $responseData = $event->getData();
  6. if ($jwtCookies && $this->removeTokenFromBodyWhenCookiesUsed) {
  7. unset($responseData['token']);
  8. }
  1. /**
  2. * {@inheritdoc}
  3. */
  4. public function onAuthenticationSuccess(Request $request, TokenInterface $token): Response
  5. {
  6. return $this->handleAuthenticationSuccess($token->getUser());
  7. }
  8. /**
  9. * @return Response
  10. */
  1. }
  2. }
  3. public function onAuthenticationSuccess(Request $request, TokenInterface $token): ?Response
  4. {
  5. return $this->handler->onAuthenticationSuccess($request, $token);
  6. }
  7. }
  1. {
  2. if (null === $this->successHandler) {
  3. return null; // let the original request continue
  4. }
  5. return $this->successHandler->onAuthenticationSuccess($request, $token);
  6. }
  7. public function onAuthenticationFailure(Request $request, AuthenticationException $exception): ?Response
  8. {
  9. if (null === $this->failureHandler) {
  1. public function onAuthenticationSuccess(Request $request, TokenInterface $token, string $firewallName): ?Response
  2. {
  3. $this->authenticated = true;
  4. return $this->authenticator->onAuthenticationSuccess($request, $token, $firewallName);
  5. }
  6. public function onAuthenticationFailure(Request $request, AuthenticationException $exception): ?Response
  7. {
  8. $this->authenticated = false;
  1. private function handleAuthenticationSuccess(TokenInterface $authenticatedToken, Passport $passport, Request $request, AuthenticatorInterface $authenticator, ?TokenInterface $previousToken): ?Response
  2. {
  3. $this->tokenStorage->setToken($authenticatedToken);
  4. $response = $authenticator->onAuthenticationSuccess($request, $authenticatedToken, $this->firewallName);
  5. if ($authenticator instanceof InteractiveAuthenticatorInterface && $authenticator->isInteractive()) {
  6. $loginEvent = new InteractiveLoginEvent($request, $authenticatedToken);
  7. $this->eventDispatcher->dispatch($loginEvent, SecurityEvents::INTERACTIVE_LOGIN);
  8. }
  1. return null;
  2. }
  3. // success! (sets the token on the token storage, etc)
  4. $response = $this->handleAuthenticationSuccess($authenticatedToken, $passport, $request, $authenticator, $previousToken);
  5. if ($response instanceof Response) {
  6. return $response;
  7. }
  8. $this->logger?->debug('Authenticator set no success response: request continues.', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
  1. $this->logger?->debug('Skipping the "{authenticator}" authenticator as it did not support the request.', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
  2. continue;
  3. }
  4. $response = $this->executeAuthenticator($authenticator, $request);
  5. if (null !== $response) {
  6. $this->logger?->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
  7. return $response;
  8. }
  1. if (!$authenticators) {
  2. return null;
  3. }
  4. return $this->executeAuthenticators($authenticators, $request);
  5. }
  6. /**
  7. * @param AuthenticatorInterface[] $authenticators
  8. */
  1. }
  2. public function authenticate(RequestEvent $event): void
  3. {
  4. $request = $event->getRequest();
  5. $response = $this->authenticatorManager->authenticateRequest($request);
  6. if (null === $response) {
  7. return;
  8. }
  9. $event->setResponse($response);
  1. $authenticators[$key] = new TraceableAuthenticator($authenticator);
  2. }
  3. $request->attributes->set('_security_authenticators', $authenticators);
  4. $this->authenticationManagerListener->authenticate($event);
  5. foreach ($authenticators as $authenticator) {
  6. $this->authenticatorsInfo[] = $authenticator->getInfo();
  7. }
  8. }
  1. public function authenticate(RequestEvent $event): void
  2. {
  3. $startTime = microtime(true);
  4. try {
  5. $this->listener->authenticate($event);
  6. } catch (LazyResponseException $e) {
  7. $this->response = $e->getResponse();
  8. throw $e;
  9. } finally {
  1. abstract class AbstractListener implements FirewallListenerInterface
  2. {
  3. final public function __invoke(RequestEvent $event): void
  4. {
  5. if (false !== $this->supports($event->getRequest())) {
  6. $this->authenticate($event);
  7. }
  8. }
  9. public static function getPriority(): int
  10. {
  1. }, $listener, FirewallContext::class)();
  2. $listener($event);
  3. } else {
  4. $wrappedListener = $listener instanceof FirewallListenerInterface ? new WrappedLazyListener($listener) : new WrappedListener($listener);
  5. $wrappedListener($event);
  6. $wrappedListeners[] = $wrappedListener->getInfo();
  7. if (!$authenticatorManagerListener && $listener instanceof TraceableAuthenticatorManagerListener) {
  8. $authenticatorManagerListener = $listener;
  9. }
  10. }
in vendor/symfony/security-http/Firewall.php -> callListeners (line 95)
  1. if (null !== $logoutListener) {
  2. yield $logoutListener;
  3. }
  4. };
  5. $this->callListeners($event, $authenticationListeners());
  6. }
  7. /**
  8. * @return void
  9. */
  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 $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::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. if (!$this->handlingHttpCache) {
  2. $this->resetServices = true;
  3. }
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/vhosts/forca.run/test.forca.run/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs

Level Channel Message
INFO 14:12:45 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "fbd6dc"
    },
    "request_uri": "https://test.forca.run/_profiler/fbd6dc",
    "method": "GET"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
INFO 14:12:45 deprecation User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement.
{
    "exception": {}
}
INFO 14:12:45 deprecation User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement.
{
    "exception": {}
}
INFO 14:12:45 deprecation User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement.
{
    "exception": {}
}
INFO 14:12:45 deprecation User Deprecated: Since symfony/validator 6.4: Method "Symfony\Component\Validator\ValidatorBuilder::setDoctrineAnnotationReader()" is deprecated without replacement.
{
    "exception": {}
}
DEBUG 14:12:45 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 14:12:45 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 14:12:45 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 14:12:45 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 14:12:45 event Notified event "kernel.controller_arguments" to listener "ContainerWFRQu04\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerWFRQu04\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 14:12:45 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 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 14:12:45 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 14:12:45 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 14:12:45 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 14:12:45 event Notified event "kernel.controller_arguments" to listener "ContainerWFRQu04\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerWFRQu04\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 14:12:45 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 14:12:45 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 14:12:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 14:12:45 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 14:12:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 14:12:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 14:12:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 14:12:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 14:12:45 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 14:12:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 14:12:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 14:12:45 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 14:12:45 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 14:12:45 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 14:12:45 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 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 14:12:45 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 14:12:45 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 14:12:45 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 14:12:45 event Notified event "kernel.controller_arguments" to listener "ContainerWFRQu04\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerWFRQu04\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 14:12:45 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 14:12:45 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 14:12:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 14:12:45 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 14:12:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 14:12:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 14:12:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 14:12:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 14:12:45 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 14:12:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 14:12:45 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 14:12:45 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 14:12:45 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 14:12:45 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 14:12:45 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 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 14:12:45 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 14:12:45 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 14:12:45 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 14:12:45 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 14:12:45 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 14:12:45 event Notified event "kernel.controller_arguments" to listener "ContainerWFRQu04\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerWFRQu04\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 14:12:45 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 Traces 3

[3/3] TableNotFoundException
Doctrine\DBAL\Exception\TableNotFoundException:
An exception occurred while executing a query: SQLSTATE[42P01]: Undefined table: 7 ERROR:  relation "app_refresh_token_id_seq" does not exist
LINE 1: SELECT NEXTVAL('app_refresh_token_id_seq')
                       ^

  at vendor/doctrine/dbal/src/Driver/API/PostgreSQL/ExceptionConverter.php:71
  at Doctrine\DBAL\Driver\API\PostgreSQL\ExceptionConverter->convert()
     (vendor/doctrine/dbal/src/Connection.php:1976)
  at Doctrine\DBAL\Connection->handleDriverException()
     (vendor/doctrine/dbal/src/Connection.php:1918)
  at Doctrine\DBAL\Connection->convertExceptionDuringQuery()
     (vendor/doctrine/dbal/src/Connection.php:1111)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/dbal/src/Connection.php:627)
  at Doctrine\DBAL\Connection->fetchOne()
     (vendor/doctrine/orm/src/Id/SequenceGenerator.php:65)
  at Doctrine\ORM\Id\SequenceGenerator->generateId()
     (vendor/doctrine/orm/src/UnitOfWork.php:1049)
  at Doctrine\ORM\UnitOfWork->persistNew()
     (vendor/doctrine/orm/src/UnitOfWork.php:2071)
  at Doctrine\ORM\UnitOfWork->doPersist()
     (vendor/doctrine/orm/src/UnitOfWork.php:2028)
  at Doctrine\ORM\UnitOfWork->persist()
     (vendor/doctrine/orm/src/EntityManager.php:681)
  at Doctrine\ORM\EntityManager->persist()
     (vendor/gesdinet/jwt-refresh-token-bundle/Doctrine/RefreshTokenManager.php:102)
  at Gesdinet\JWTRefreshTokenBundle\Doctrine\RefreshTokenManager->save()
     (vendor/gesdinet/jwt-refresh-token-bundle/EventListener/AttachRefreshTokenOnSuccessListener.php:149)
  at Gesdinet\JWTRefreshTokenBundle\EventListener\AttachRefreshTokenOnSuccessListener->attachRefreshToken()
     (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:142)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/lexik/jwt-authentication-bundle/Security/Http/Authentication/AuthenticationSuccessHandler.php:69)
  at Lexik\Bundle\JWTAuthenticationBundle\Security\Http\Authentication\AuthenticationSuccessHandler->handleAuthenticationSuccess()
     (vendor/lexik/jwt-authentication-bundle/Security/Http/Authentication/AuthenticationSuccessHandler.php:49)
  at Lexik\Bundle\JWTAuthenticationBundle\Security\Http\Authentication\AuthenticationSuccessHandler->onAuthenticationSuccess()
     (vendor/symfony/security-http/Authentication/CustomAuthenticationSuccessHandler.php:42)
  at Symfony\Component\Security\Http\Authentication\CustomAuthenticationSuccessHandler->onAuthenticationSuccess()
     (vendor/symfony/security-http/Authenticator/JsonLoginAuthenticator.php:117)
  at Symfony\Component\Security\Http\Authenticator\JsonLoginAuthenticator->onAuthenticationSuccess()
     (vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticator.php:83)
  at Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator->onAuthenticationSuccess()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:235)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->handleAuthenticationSuccess()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:221)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticator()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:158)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticators()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:140)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->authenticateRequest()
     (vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php:40)
  at Symfony\Component\Security\Http\Firewall\AuthenticatorManagerListener->authenticate()
     (vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php:68)
  at Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticatorManagerListener->authenticate()
     (vendor/symfony/security-bundle/Debug/WrappedLazyListener.php:46)
  at Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener->authenticate()
     (vendor/symfony/security-http/Firewall/AbstractListener.php:26)
  at Symfony\Component\Security\Http\Firewall\AbstractListener->__invoke()
     (vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php:83)
  at Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener->callListeners()
     (vendor/symfony/security-http/Firewall.php:95)
  at Symfony\Component\Security\Http\Firewall->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:142)
  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:208)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/vhosts/forca.run/test.forca.run/vendor/autoload_runtime.php')
     (public/index.php:5)                
[2/3] Exception
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[42P01]: Undefined table: 7 ERROR:  relation "app_refresh_token_id_seq" does not exist
LINE 1: SELECT NEXTVAL('app_refresh_token_id_seq')
                       ^

  at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:24
  at Doctrine\DBAL\Driver\PDO\Exception::new()
     (vendor/doctrine/dbal/src/Driver/PDO/Connection.php:76)
  at Doctrine\DBAL\Driver\PDO\Connection->query()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:33)
  at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query()
     (vendor/doctrine/dbal/src/Logging/Connection.php:43)
  at Doctrine\DBAL\Logging\Connection->query()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:33)
  at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query()
     (vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Connection.php:58)
  at Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3\Connection->query()
     (vendor/doctrine/dbal/src/Connection.php:1106)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/dbal/src/Connection.php:627)
  at Doctrine\DBAL\Connection->fetchOne()
     (vendor/doctrine/orm/src/Id/SequenceGenerator.php:65)
  at Doctrine\ORM\Id\SequenceGenerator->generateId()
     (vendor/doctrine/orm/src/UnitOfWork.php:1049)
  at Doctrine\ORM\UnitOfWork->persistNew()
     (vendor/doctrine/orm/src/UnitOfWork.php:2071)
  at Doctrine\ORM\UnitOfWork->doPersist()
     (vendor/doctrine/orm/src/UnitOfWork.php:2028)
  at Doctrine\ORM\UnitOfWork->persist()
     (vendor/doctrine/orm/src/EntityManager.php:681)
  at Doctrine\ORM\EntityManager->persist()
     (vendor/gesdinet/jwt-refresh-token-bundle/Doctrine/RefreshTokenManager.php:102)
  at Gesdinet\JWTRefreshTokenBundle\Doctrine\RefreshTokenManager->save()
     (vendor/gesdinet/jwt-refresh-token-bundle/EventListener/AttachRefreshTokenOnSuccessListener.php:149)
  at Gesdinet\JWTRefreshTokenBundle\EventListener\AttachRefreshTokenOnSuccessListener->attachRefreshToken()
     (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:142)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/lexik/jwt-authentication-bundle/Security/Http/Authentication/AuthenticationSuccessHandler.php:69)
  at Lexik\Bundle\JWTAuthenticationBundle\Security\Http\Authentication\AuthenticationSuccessHandler->handleAuthenticationSuccess()
     (vendor/lexik/jwt-authentication-bundle/Security/Http/Authentication/AuthenticationSuccessHandler.php:49)
  at Lexik\Bundle\JWTAuthenticationBundle\Security\Http\Authentication\AuthenticationSuccessHandler->onAuthenticationSuccess()
     (vendor/symfony/security-http/Authentication/CustomAuthenticationSuccessHandler.php:42)
  at Symfony\Component\Security\Http\Authentication\CustomAuthenticationSuccessHandler->onAuthenticationSuccess()
     (vendor/symfony/security-http/Authenticator/JsonLoginAuthenticator.php:117)
  at Symfony\Component\Security\Http\Authenticator\JsonLoginAuthenticator->onAuthenticationSuccess()
     (vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticator.php:83)
  at Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator->onAuthenticationSuccess()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:235)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->handleAuthenticationSuccess()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:221)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticator()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:158)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticators()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:140)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->authenticateRequest()
     (vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php:40)
  at Symfony\Component\Security\Http\Firewall\AuthenticatorManagerListener->authenticate()
     (vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php:68)
  at Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticatorManagerListener->authenticate()
     (vendor/symfony/security-bundle/Debug/WrappedLazyListener.php:46)
  at Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener->authenticate()
     (vendor/symfony/security-http/Firewall/AbstractListener.php:26)
  at Symfony\Component\Security\Http\Firewall\AbstractListener->__invoke()
     (vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php:83)
  at Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener->callListeners()
     (vendor/symfony/security-http/Firewall.php:95)
  at Symfony\Component\Security\Http\Firewall->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:142)
  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:208)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/vhosts/forca.run/test.forca.run/vendor/autoload_runtime.php')
     (public/index.php:5)                
[1/3] PDOException
PDOException:
SQLSTATE[42P01]: Undefined table: 7 ERROR:  relation "app_refresh_token_id_seq" does not exist
LINE 1: SELECT NEXTVAL('app_refresh_token_id_seq')
                       ^

  at vendor/doctrine/dbal/src/Driver/PDO/Connection.php:71
  at PDO->query()
     (vendor/doctrine/dbal/src/Driver/PDO/Connection.php:71)
  at Doctrine\DBAL\Driver\PDO\Connection->query()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:33)
  at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query()
     (vendor/doctrine/dbal/src/Logging/Connection.php:43)
  at Doctrine\DBAL\Logging\Connection->query()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php:33)
  at Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware->query()
     (vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Connection.php:58)
  at Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3\Connection->query()
     (vendor/doctrine/dbal/src/Connection.php:1106)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/dbal/src/Connection.php:627)
  at Doctrine\DBAL\Connection->fetchOne()
     (vendor/doctrine/orm/src/Id/SequenceGenerator.php:65)
  at Doctrine\ORM\Id\SequenceGenerator->generateId()
     (vendor/doctrine/orm/src/UnitOfWork.php:1049)
  at Doctrine\ORM\UnitOfWork->persistNew()
     (vendor/doctrine/orm/src/UnitOfWork.php:2071)
  at Doctrine\ORM\UnitOfWork->doPersist()
     (vendor/doctrine/orm/src/UnitOfWork.php:2028)
  at Doctrine\ORM\UnitOfWork->persist()
     (vendor/doctrine/orm/src/EntityManager.php:681)
  at Doctrine\ORM\EntityManager->persist()
     (vendor/gesdinet/jwt-refresh-token-bundle/Doctrine/RefreshTokenManager.php:102)
  at Gesdinet\JWTRefreshTokenBundle\Doctrine\RefreshTokenManager->save()
     (vendor/gesdinet/jwt-refresh-token-bundle/EventListener/AttachRefreshTokenOnSuccessListener.php:149)
  at Gesdinet\JWTRefreshTokenBundle\EventListener\AttachRefreshTokenOnSuccessListener->attachRefreshToken()
     (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:142)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/lexik/jwt-authentication-bundle/Security/Http/Authentication/AuthenticationSuccessHandler.php:69)
  at Lexik\Bundle\JWTAuthenticationBundle\Security\Http\Authentication\AuthenticationSuccessHandler->handleAuthenticationSuccess()
     (vendor/lexik/jwt-authentication-bundle/Security/Http/Authentication/AuthenticationSuccessHandler.php:49)
  at Lexik\Bundle\JWTAuthenticationBundle\Security\Http\Authentication\AuthenticationSuccessHandler->onAuthenticationSuccess()
     (vendor/symfony/security-http/Authentication/CustomAuthenticationSuccessHandler.php:42)
  at Symfony\Component\Security\Http\Authentication\CustomAuthenticationSuccessHandler->onAuthenticationSuccess()
     (vendor/symfony/security-http/Authenticator/JsonLoginAuthenticator.php:117)
  at Symfony\Component\Security\Http\Authenticator\JsonLoginAuthenticator->onAuthenticationSuccess()
     (vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticator.php:83)
  at Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator->onAuthenticationSuccess()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:235)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->handleAuthenticationSuccess()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:221)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticator()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:158)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticators()
     (vendor/symfony/security-http/Authentication/AuthenticatorManager.php:140)
  at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->authenticateRequest()
     (vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php:40)
  at Symfony\Component\Security\Http\Firewall\AuthenticatorManagerListener->authenticate()
     (vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php:68)
  at Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticatorManagerListener->authenticate()
     (vendor/symfony/security-bundle/Debug/WrappedLazyListener.php:46)
  at Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener->authenticate()
     (vendor/symfony/security-http/Firewall/AbstractListener.php:26)
  at Symfony\Component\Security\Http\Firewall\AbstractListener->__invoke()
     (vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php:83)
  at Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener->callListeners()
     (vendor/symfony/security-http/Firewall.php:95)
  at Symfony\Component\Security\Http\Firewall->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:142)
  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:208)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/vhosts/forca.run/test.forca.run/vendor/autoload_runtime.php')
     (public/index.php:5)