Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ TableNotFoundException
case '42703':return new InvalidFieldNameException($exception, $query);case '42P01':return new TableNotFoundException($exception, $query);case '42P07':return new TableExistsException($exception, $query);case '08006':
in
vendor/doctrine/dbal/src/Connection.php
->
convert
(line 1976)
private function handleDriverException(Driver\Exception $driverException,?Query $query): DriverException {$this->exceptionConverter ??= $this->_driver->getExceptionConverter();$exception = $this->exceptionConverter->convert($driverException, $query);if ($exception instanceof ConnectionLost) {$this->close();}
in
vendor/doctrine/dbal/src/Connection.php
->
handleDriverException
(line 1918)
Driver\Exception $e,string $sql,array $params = [],array $types = []): DriverException {return $this->handleDriverException($e, new Query($sql, $params, $types));}/** @internal */final public function convertException(Driver\Exception $e): DriverException{
in
vendor/doctrine/dbal/src/Connection.php
->
convertExceptionDuringQuery
(line 1111)
$result = $connection->query($sql);}return new Result($result, $this);} catch (Driver\Exception $e) {throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);} finally {if ($logger !== null) {$logger->stopQuery();}}
in
vendor/doctrine/dbal/src/Connection.php
->
executeQuery
(line 627)
** @throws Exception*/public function fetchOne(string $query, array $params = [], array $types = []){return $this->executeQuery($query, $params, $types)->fetchOne();}/*** Whether an actual connection to the database is established.*
in
vendor/doctrine/orm/src/Id/SequenceGenerator.php
->
fetchOne
(line 65)
if ($connection instanceof PrimaryReadReplicaConnection) {$connection->ensureConnectedToPrimary();}$this->nextValue = (int) $connection->fetchOne($sql);$this->maxValue = $this->nextValue + $this->allocationSize;}return $this->nextValue++;}
in
vendor/doctrine/orm/src/UnitOfWork.php
->
generateId
(line 1049)
}$idGen = $class->idGenerator;if (! $idGen->isPostInsertGenerator()) {$idValue = $idGen->generateId($this->em, $entity);if (! $idGen instanceof AssignedGenerator) {$idValue = [$class->getSingleIdentifierFieldName() => $this->convertSingleFieldIdentifierToPHPValue($class, $idValue)];$class->setIdentifierValues($entity, $idValue);
in
vendor/doctrine/orm/src/UnitOfWork.php
->
persistNew
(line 2071)
}break;case self::STATE_NEW:$this->persistNew($class, $entity);break;case self::STATE_REMOVED:// Entity becomes managed againunset($this->entityDeletions[$oid]);
in
vendor/doctrine/orm/src/UnitOfWork.php
->
doPersist
(line 2028)
*/public function persist($entity){$visited = [];$this->doPersist($entity, $visited);}/*** Persists an entity as part of the current unit of work.*
in
vendor/doctrine/orm/src/EntityManager.php
->
persist
(line 681)
throw ORMInvalidArgumentException::invalidObject('EntityManager#persist()', $entity);}$this->errorIfClosed();$this->unitOfWork->persist($entity);}/*** Removes an entity instance.*
in
vendor/gesdinet/jwt-refresh-token-bundle/Doctrine/RefreshTokenManager.php
->
persist
(line 102)
** @return void*/public function save(RefreshTokenInterface $refreshToken, $andFlush = true){$this->objectManager->persist($refreshToken);if ($andFlush) {$this->objectManager->flush();}}
in
vendor/gesdinet/jwt-refresh-token-bundle/EventListener/AttachRefreshTokenOnSuccessListener.php
->
save
(line 149)
$data[$this->returnExpirationParameterName] = ($refreshToken) ? $refreshToken->getValid()->getTimestamp() : 0;}} else {$refreshToken = $this->refreshTokenGenerator->createForUserWithTtl($user, $this->ttl);$this->refreshTokenManager->save($refreshToken);$refreshTokenString = $refreshToken->getRefreshToken();$data[$this->tokenParameterName] = $refreshTokenString;if ($this->returnExpiration) {$data[$this->returnExpirationParameterName] = $refreshToken->getValid()->getTimestamp();
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
attachRefreshToken
(line 116)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 220)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 142)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/lexik/jwt-authentication-bundle/Security/Http/Authentication/AuthenticationSuccessHandler.php
->
dispatch
(line 69)
}$response = new JWTAuthenticationSuccessResponse($jwt, [], $jwtCookies);$event = new AuthenticationSuccessEvent(['token' => $jwt], $user, $response);$this->dispatcher->dispatch($event, Events::AUTHENTICATION_SUCCESS);$responseData = $event->getData();if ($jwtCookies && $this->removeTokenFromBodyWhenCookiesUsed) {unset($responseData['token']);}
in
vendor/lexik/jwt-authentication-bundle/Security/Http/Authentication/AuthenticationSuccessHandler.php
->
handleAuthenticationSuccess
(line 49)
/*** {@inheritdoc}*/public function onAuthenticationSuccess(Request $request, TokenInterface $token): Response{return $this->handleAuthenticationSuccess($token->getUser());}/*** @return Response*/
in
vendor/symfony/security-http/Authentication/CustomAuthenticationSuccessHandler.php
->
onAuthenticationSuccess
(line 42)
}}public function onAuthenticationSuccess(Request $request, TokenInterface $token): ?Response{return $this->handler->onAuthenticationSuccess($request, $token);}}
in
vendor/symfony/security-http/Authenticator/JsonLoginAuthenticator.php
->
onAuthenticationSuccess
(line 117)
{if (null === $this->successHandler) {return null; // let the original request continue}return $this->successHandler->onAuthenticationSuccess($request, $token);}public function onAuthenticationFailure(Request $request, AuthenticationException $exception): ?Response{if (null === $this->failureHandler) {
in
vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticator.php
->
onAuthenticationSuccess
(line 83)
public function onAuthenticationSuccess(Request $request, TokenInterface $token, string $firewallName): ?Response{$this->authenticated = true;return $this->authenticator->onAuthenticationSuccess($request, $token, $firewallName);}public function onAuthenticationFailure(Request $request, AuthenticationException $exception): ?Response{$this->authenticated = false;
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
onAuthenticationSuccess
(line 235)
private function handleAuthenticationSuccess(TokenInterface $authenticatedToken, Passport $passport, Request $request, AuthenticatorInterface $authenticator, ?TokenInterface $previousToken): ?Response{$this->tokenStorage->setToken($authenticatedToken);$response = $authenticator->onAuthenticationSuccess($request, $authenticatedToken, $this->firewallName);if ($authenticator instanceof InteractiveAuthenticatorInterface && $authenticator->isInteractive()) {$loginEvent = new InteractiveLoginEvent($request, $authenticatedToken);$this->eventDispatcher->dispatch($loginEvent, SecurityEvents::INTERACTIVE_LOGIN);}
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
handleAuthenticationSuccess
(line 221)
return null;}// success! (sets the token on the token storage, etc)$response = $this->handleAuthenticationSuccess($authenticatedToken, $passport, $request, $authenticator, $previousToken);if ($response instanceof Response) {return $response;}$this->logger?->debug('Authenticator set no success response: request continues.', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
executeAuthenticator
(line 158)
$this->logger?->debug('Skipping the "{authenticator}" authenticator as it did not support the request.', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);continue;}$response = $this->executeAuthenticator($authenticator, $request);if (null !== $response) {$this->logger?->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);return $response;}
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
executeAuthenticators
(line 140)
if (!$authenticators) {return null;}return $this->executeAuthenticators($authenticators, $request);}/*** @param AuthenticatorInterface[] $authenticators*/
in
vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php
->
authenticateRequest
(line 40)
}public function authenticate(RequestEvent $event): void{$request = $event->getRequest();$response = $this->authenticatorManager->authenticateRequest($request);if (null === $response) {return;}$event->setResponse($response);
in
vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php
->
authenticate
(line 68)
$authenticators[$key] = new TraceableAuthenticator($authenticator);}$request->attributes->set('_security_authenticators', $authenticators);$this->authenticationManagerListener->authenticate($event);foreach ($authenticators as $authenticator) {$this->authenticatorsInfo[] = $authenticator->getInfo();}}
in
vendor/symfony/security-bundle/Debug/WrappedLazyListener.php
->
authenticate
(line 46)
public function authenticate(RequestEvent $event): void{$startTime = microtime(true);try {$this->listener->authenticate($event);} catch (LazyResponseException $e) {$this->response = $e->getResponse();throw $e;} finally {
in
vendor/symfony/security-http/Firewall/AbstractListener.php
->
authenticate
(line 26)
abstract class AbstractListener implements FirewallListenerInterface{final public function __invoke(RequestEvent $event): void{if (false !== $this->supports($event->getRequest())) {$this->authenticate($event);}}public static function getPriority(): int{
in
vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php
->
__invoke
(line 83)
}, $listener, FirewallContext::class)();$listener($event);} else {$wrappedListener = $listener instanceof FirewallListenerInterface ? new WrappedLazyListener($listener) : new WrappedListener($listener);$wrappedListener($event);$wrappedListeners[] = $wrappedListener->getInfo();if (!$authenticatorManagerListener && $listener instanceof TraceableAuthenticatorManagerListener) {$authenticatorManagerListener = $listener;}}
in
vendor/symfony/security-http/Firewall.php
->
callListeners
(line 95)
if (null !== $logoutListener) {yield $logoutListener;}};$this->callListeners($event, $authenticationListeners());}/*** @return void*/
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 116)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 220)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 142)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 157)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 208)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/var/www/vhosts/forca.run/test.forca.run/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Doctrine\DBAL\Driver\PDO\ Exception
in
vendor/doctrine/dbal/src/Driver/PDO/Exception.php
(line 24)
} else {$code = $exception->getCode();$sqlState = null;}return new self($exception->getMessage(), $sqlState, $code, $exception);}}
in
vendor/doctrine/dbal/src/Driver/PDO/Connection.php
::
new
(line 76)
$stmt = $this->connection->query($sql);assert($stmt instanceof PDOStatement);return new Result($stmt);} catch (PDOException $exception) {throw Exception::new($exception);}}/*** {@inheritDoc}
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php
->
query
(line 33)
return $this->wrappedConnection->prepare($sql);}public function query(string $sql): Result{return $this->wrappedConnection->query($sql);}/*** {@inheritDoc}*/
in
vendor/doctrine/dbal/src/Logging/Connection.php
->
query
(line 43)
public function query(string $sql): Result{$this->logger->debug('Executing query: {sql}', ['sql' => $sql]);return parent::query($sql);}public function exec(string $sql): int{$this->logger->debug('Executing statement: {sql}', ['sql' => $sql]);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php
->
query
(line 33)
return $this->wrappedConnection->prepare($sql);}public function query(string $sql): Result{return $this->wrappedConnection->query($sql);}/*** {@inheritDoc}*/
in
vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Connection.php
->
query
(line 58)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::query($sql);} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Connection.php
->
query
(line 1106)
$this->bindParameters($stmt, $params, $types);$result = $stmt->execute();} else {$result = $connection->query($sql);}return new Result($result, $this);} catch (Driver\Exception $e) {throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
in
vendor/doctrine/dbal/src/Connection.php
->
executeQuery
(line 627)
** @throws Exception*/public function fetchOne(string $query, array $params = [], array $types = []){return $this->executeQuery($query, $params, $types)->fetchOne();}/*** Whether an actual connection to the database is established.*
in
vendor/doctrine/orm/src/Id/SequenceGenerator.php
->
fetchOne
(line 65)
if ($connection instanceof PrimaryReadReplicaConnection) {$connection->ensureConnectedToPrimary();}$this->nextValue = (int) $connection->fetchOne($sql);$this->maxValue = $this->nextValue + $this->allocationSize;}return $this->nextValue++;}
in
vendor/doctrine/orm/src/UnitOfWork.php
->
generateId
(line 1049)
}$idGen = $class->idGenerator;if (! $idGen->isPostInsertGenerator()) {$idValue = $idGen->generateId($this->em, $entity);if (! $idGen instanceof AssignedGenerator) {$idValue = [$class->getSingleIdentifierFieldName() => $this->convertSingleFieldIdentifierToPHPValue($class, $idValue)];$class->setIdentifierValues($entity, $idValue);
in
vendor/doctrine/orm/src/UnitOfWork.php
->
persistNew
(line 2071)
}break;case self::STATE_NEW:$this->persistNew($class, $entity);break;case self::STATE_REMOVED:// Entity becomes managed againunset($this->entityDeletions[$oid]);
in
vendor/doctrine/orm/src/UnitOfWork.php
->
doPersist
(line 2028)
*/public function persist($entity){$visited = [];$this->doPersist($entity, $visited);}/*** Persists an entity as part of the current unit of work.*
in
vendor/doctrine/orm/src/EntityManager.php
->
persist
(line 681)
throw ORMInvalidArgumentException::invalidObject('EntityManager#persist()', $entity);}$this->errorIfClosed();$this->unitOfWork->persist($entity);}/*** Removes an entity instance.*
in
vendor/gesdinet/jwt-refresh-token-bundle/Doctrine/RefreshTokenManager.php
->
persist
(line 102)
** @return void*/public function save(RefreshTokenInterface $refreshToken, $andFlush = true){$this->objectManager->persist($refreshToken);if ($andFlush) {$this->objectManager->flush();}}
in
vendor/gesdinet/jwt-refresh-token-bundle/EventListener/AttachRefreshTokenOnSuccessListener.php
->
save
(line 149)
$data[$this->returnExpirationParameterName] = ($refreshToken) ? $refreshToken->getValid()->getTimestamp() : 0;}} else {$refreshToken = $this->refreshTokenGenerator->createForUserWithTtl($user, $this->ttl);$this->refreshTokenManager->save($refreshToken);$refreshTokenString = $refreshToken->getRefreshToken();$data[$this->tokenParameterName] = $refreshTokenString;if ($this->returnExpiration) {$data[$this->returnExpirationParameterName] = $refreshToken->getValid()->getTimestamp();
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
attachRefreshToken
(line 116)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 220)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 142)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/lexik/jwt-authentication-bundle/Security/Http/Authentication/AuthenticationSuccessHandler.php
->
dispatch
(line 69)
}$response = new JWTAuthenticationSuccessResponse($jwt, [], $jwtCookies);$event = new AuthenticationSuccessEvent(['token' => $jwt], $user, $response);$this->dispatcher->dispatch($event, Events::AUTHENTICATION_SUCCESS);$responseData = $event->getData();if ($jwtCookies && $this->removeTokenFromBodyWhenCookiesUsed) {unset($responseData['token']);}
in
vendor/lexik/jwt-authentication-bundle/Security/Http/Authentication/AuthenticationSuccessHandler.php
->
handleAuthenticationSuccess
(line 49)
/*** {@inheritdoc}*/public function onAuthenticationSuccess(Request $request, TokenInterface $token): Response{return $this->handleAuthenticationSuccess($token->getUser());}/*** @return Response*/
in
vendor/symfony/security-http/Authentication/CustomAuthenticationSuccessHandler.php
->
onAuthenticationSuccess
(line 42)
}}public function onAuthenticationSuccess(Request $request, TokenInterface $token): ?Response{return $this->handler->onAuthenticationSuccess($request, $token);}}
in
vendor/symfony/security-http/Authenticator/JsonLoginAuthenticator.php
->
onAuthenticationSuccess
(line 117)
{if (null === $this->successHandler) {return null; // let the original request continue}return $this->successHandler->onAuthenticationSuccess($request, $token);}public function onAuthenticationFailure(Request $request, AuthenticationException $exception): ?Response{if (null === $this->failureHandler) {
in
vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticator.php
->
onAuthenticationSuccess
(line 83)
public function onAuthenticationSuccess(Request $request, TokenInterface $token, string $firewallName): ?Response{$this->authenticated = true;return $this->authenticator->onAuthenticationSuccess($request, $token, $firewallName);}public function onAuthenticationFailure(Request $request, AuthenticationException $exception): ?Response{$this->authenticated = false;
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
onAuthenticationSuccess
(line 235)
private function handleAuthenticationSuccess(TokenInterface $authenticatedToken, Passport $passport, Request $request, AuthenticatorInterface $authenticator, ?TokenInterface $previousToken): ?Response{$this->tokenStorage->setToken($authenticatedToken);$response = $authenticator->onAuthenticationSuccess($request, $authenticatedToken, $this->firewallName);if ($authenticator instanceof InteractiveAuthenticatorInterface && $authenticator->isInteractive()) {$loginEvent = new InteractiveLoginEvent($request, $authenticatedToken);$this->eventDispatcher->dispatch($loginEvent, SecurityEvents::INTERACTIVE_LOGIN);}
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
handleAuthenticationSuccess
(line 221)
return null;}// success! (sets the token on the token storage, etc)$response = $this->handleAuthenticationSuccess($authenticatedToken, $passport, $request, $authenticator, $previousToken);if ($response instanceof Response) {return $response;}$this->logger?->debug('Authenticator set no success response: request continues.', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
executeAuthenticator
(line 158)
$this->logger?->debug('Skipping the "{authenticator}" authenticator as it did not support the request.', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);continue;}$response = $this->executeAuthenticator($authenticator, $request);if (null !== $response) {$this->logger?->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);return $response;}
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
executeAuthenticators
(line 140)
if (!$authenticators) {return null;}return $this->executeAuthenticators($authenticators, $request);}/*** @param AuthenticatorInterface[] $authenticators*/
in
vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php
->
authenticateRequest
(line 40)
}public function authenticate(RequestEvent $event): void{$request = $event->getRequest();$response = $this->authenticatorManager->authenticateRequest($request);if (null === $response) {return;}$event->setResponse($response);
in
vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php
->
authenticate
(line 68)
$authenticators[$key] = new TraceableAuthenticator($authenticator);}$request->attributes->set('_security_authenticators', $authenticators);$this->authenticationManagerListener->authenticate($event);foreach ($authenticators as $authenticator) {$this->authenticatorsInfo[] = $authenticator->getInfo();}}
in
vendor/symfony/security-bundle/Debug/WrappedLazyListener.php
->
authenticate
(line 46)
public function authenticate(RequestEvent $event): void{$startTime = microtime(true);try {$this->listener->authenticate($event);} catch (LazyResponseException $e) {$this->response = $e->getResponse();throw $e;} finally {
in
vendor/symfony/security-http/Firewall/AbstractListener.php
->
authenticate
(line 26)
abstract class AbstractListener implements FirewallListenerInterface{final public function __invoke(RequestEvent $event): void{if (false !== $this->supports($event->getRequest())) {$this->authenticate($event);}}public static function getPriority(): int{
in
vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php
->
__invoke
(line 83)
}, $listener, FirewallContext::class)();$listener($event);} else {$wrappedListener = $listener instanceof FirewallListenerInterface ? new WrappedLazyListener($listener) : new WrappedListener($listener);$wrappedListener($event);$wrappedListeners[] = $wrappedListener->getInfo();if (!$authenticatorManagerListener && $listener instanceof TraceableAuthenticatorManagerListener) {$authenticatorManagerListener = $listener;}}
in
vendor/symfony/security-http/Firewall.php
->
callListeners
(line 95)
if (null !== $logoutListener) {yield $logoutListener;}};$this->callListeners($event, $authenticationListeners());}/*** @return void*/
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 116)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 220)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 142)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 157)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 208)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/var/www/vhosts/forca.run/test.forca.run/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
PDOException
in
vendor/doctrine/dbal/src/Driver/PDO/Connection.php
(line 71)
}public function query(string $sql): ResultInterface{try {$stmt = $this->connection->query($sql);assert($stmt instanceof PDOStatement);return new Result($stmt);} catch (PDOException $exception) {throw Exception::new($exception);
in
vendor/doctrine/dbal/src/Driver/PDO/Connection.php
->
query
(line 71)
}public function query(string $sql): ResultInterface{try {$stmt = $this->connection->query($sql);assert($stmt instanceof PDOStatement);return new Result($stmt);} catch (PDOException $exception) {throw Exception::new($exception);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php
->
query
(line 33)
return $this->wrappedConnection->prepare($sql);}public function query(string $sql): Result{return $this->wrappedConnection->query($sql);}/*** {@inheritDoc}*/
in
vendor/doctrine/dbal/src/Logging/Connection.php
->
query
(line 43)
public function query(string $sql): Result{$this->logger->debug('Executing query: {sql}', ['sql' => $sql]);return parent::query($sql);}public function exec(string $sql): int{$this->logger->debug('Executing statement: {sql}', ['sql' => $sql]);
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractConnectionMiddleware.php
->
query
(line 33)
return $this->wrappedConnection->prepare($sql);}public function query(string $sql): Result{return $this->wrappedConnection->query($sql);}/*** {@inheritDoc}*/
in
vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Connection.php
->
query
(line 58)
$this->stopwatch?->start('doctrine', 'doctrine');$query->start();try {return parent::query($sql);} finally {$query->stop();$this->stopwatch?->stop('doctrine');}}
in
vendor/doctrine/dbal/src/Connection.php
->
query
(line 1106)
$this->bindParameters($stmt, $params, $types);$result = $stmt->execute();} else {$result = $connection->query($sql);}return new Result($result, $this);} catch (Driver\Exception $e) {throw $this->convertExceptionDuringQuery($e, $sql, $params, $types);
in
vendor/doctrine/dbal/src/Connection.php
->
executeQuery
(line 627)
** @throws Exception*/public function fetchOne(string $query, array $params = [], array $types = []){return $this->executeQuery($query, $params, $types)->fetchOne();}/*** Whether an actual connection to the database is established.*
in
vendor/doctrine/orm/src/Id/SequenceGenerator.php
->
fetchOne
(line 65)
if ($connection instanceof PrimaryReadReplicaConnection) {$connection->ensureConnectedToPrimary();}$this->nextValue = (int) $connection->fetchOne($sql);$this->maxValue = $this->nextValue + $this->allocationSize;}return $this->nextValue++;}
in
vendor/doctrine/orm/src/UnitOfWork.php
->
generateId
(line 1049)
}$idGen = $class->idGenerator;if (! $idGen->isPostInsertGenerator()) {$idValue = $idGen->generateId($this->em, $entity);if (! $idGen instanceof AssignedGenerator) {$idValue = [$class->getSingleIdentifierFieldName() => $this->convertSingleFieldIdentifierToPHPValue($class, $idValue)];$class->setIdentifierValues($entity, $idValue);
in
vendor/doctrine/orm/src/UnitOfWork.php
->
persistNew
(line 2071)
}break;case self::STATE_NEW:$this->persistNew($class, $entity);break;case self::STATE_REMOVED:// Entity becomes managed againunset($this->entityDeletions[$oid]);
in
vendor/doctrine/orm/src/UnitOfWork.php
->
doPersist
(line 2028)
*/public function persist($entity){$visited = [];$this->doPersist($entity, $visited);}/*** Persists an entity as part of the current unit of work.*
in
vendor/doctrine/orm/src/EntityManager.php
->
persist
(line 681)
throw ORMInvalidArgumentException::invalidObject('EntityManager#persist()', $entity);}$this->errorIfClosed();$this->unitOfWork->persist($entity);}/*** Removes an entity instance.*
in
vendor/gesdinet/jwt-refresh-token-bundle/Doctrine/RefreshTokenManager.php
->
persist
(line 102)
** @return void*/public function save(RefreshTokenInterface $refreshToken, $andFlush = true){$this->objectManager->persist($refreshToken);if ($andFlush) {$this->objectManager->flush();}}
in
vendor/gesdinet/jwt-refresh-token-bundle/EventListener/AttachRefreshTokenOnSuccessListener.php
->
save
(line 149)
$data[$this->returnExpirationParameterName] = ($refreshToken) ? $refreshToken->getValid()->getTimestamp() : 0;}} else {$refreshToken = $this->refreshTokenGenerator->createForUserWithTtl($user, $this->ttl);$this->refreshTokenManager->save($refreshToken);$refreshTokenString = $refreshToken->getRefreshToken();$data[$this->tokenParameterName] = $refreshTokenString;if ($this->returnExpiration) {$data[$this->returnExpirationParameterName] = $refreshToken->getValid()->getTimestamp();
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
attachRefreshToken
(line 116)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 220)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 142)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/lexik/jwt-authentication-bundle/Security/Http/Authentication/AuthenticationSuccessHandler.php
->
dispatch
(line 69)
}$response = new JWTAuthenticationSuccessResponse($jwt, [], $jwtCookies);$event = new AuthenticationSuccessEvent(['token' => $jwt], $user, $response);$this->dispatcher->dispatch($event, Events::AUTHENTICATION_SUCCESS);$responseData = $event->getData();if ($jwtCookies && $this->removeTokenFromBodyWhenCookiesUsed) {unset($responseData['token']);}
in
vendor/lexik/jwt-authentication-bundle/Security/Http/Authentication/AuthenticationSuccessHandler.php
->
handleAuthenticationSuccess
(line 49)
/*** {@inheritdoc}*/public function onAuthenticationSuccess(Request $request, TokenInterface $token): Response{return $this->handleAuthenticationSuccess($token->getUser());}/*** @return Response*/
in
vendor/symfony/security-http/Authentication/CustomAuthenticationSuccessHandler.php
->
onAuthenticationSuccess
(line 42)
}}public function onAuthenticationSuccess(Request $request, TokenInterface $token): ?Response{return $this->handler->onAuthenticationSuccess($request, $token);}}
in
vendor/symfony/security-http/Authenticator/JsonLoginAuthenticator.php
->
onAuthenticationSuccess
(line 117)
{if (null === $this->successHandler) {return null; // let the original request continue}return $this->successHandler->onAuthenticationSuccess($request, $token);}public function onAuthenticationFailure(Request $request, AuthenticationException $exception): ?Response{if (null === $this->failureHandler) {
in
vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticator.php
->
onAuthenticationSuccess
(line 83)
public function onAuthenticationSuccess(Request $request, TokenInterface $token, string $firewallName): ?Response{$this->authenticated = true;return $this->authenticator->onAuthenticationSuccess($request, $token, $firewallName);}public function onAuthenticationFailure(Request $request, AuthenticationException $exception): ?Response{$this->authenticated = false;
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
onAuthenticationSuccess
(line 235)
private function handleAuthenticationSuccess(TokenInterface $authenticatedToken, Passport $passport, Request $request, AuthenticatorInterface $authenticator, ?TokenInterface $previousToken): ?Response{$this->tokenStorage->setToken($authenticatedToken);$response = $authenticator->onAuthenticationSuccess($request, $authenticatedToken, $this->firewallName);if ($authenticator instanceof InteractiveAuthenticatorInterface && $authenticator->isInteractive()) {$loginEvent = new InteractiveLoginEvent($request, $authenticatedToken);$this->eventDispatcher->dispatch($loginEvent, SecurityEvents::INTERACTIVE_LOGIN);}
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
handleAuthenticationSuccess
(line 221)
return null;}// success! (sets the token on the token storage, etc)$response = $this->handleAuthenticationSuccess($authenticatedToken, $passport, $request, $authenticator, $previousToken);if ($response instanceof Response) {return $response;}$this->logger?->debug('Authenticator set no success response: request continues.', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
executeAuthenticator
(line 158)
$this->logger?->debug('Skipping the "{authenticator}" authenticator as it did not support the request.', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);continue;}$response = $this->executeAuthenticator($authenticator, $request);if (null !== $response) {$this->logger?->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => ($authenticator instanceof TraceableAuthenticator ? $authenticator->getAuthenticator() : $authenticator)::class]);return $response;}
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
executeAuthenticators
(line 140)
if (!$authenticators) {return null;}return $this->executeAuthenticators($authenticators, $request);}/*** @param AuthenticatorInterface[] $authenticators*/
in
vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php
->
authenticateRequest
(line 40)
}public function authenticate(RequestEvent $event): void{$request = $event->getRequest();$response = $this->authenticatorManager->authenticateRequest($request);if (null === $response) {return;}$event->setResponse($response);
in
vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php
->
authenticate
(line 68)
$authenticators[$key] = new TraceableAuthenticator($authenticator);}$request->attributes->set('_security_authenticators', $authenticators);$this->authenticationManagerListener->authenticate($event);foreach ($authenticators as $authenticator) {$this->authenticatorsInfo[] = $authenticator->getInfo();}}
in
vendor/symfony/security-bundle/Debug/WrappedLazyListener.php
->
authenticate
(line 46)
public function authenticate(RequestEvent $event): void{$startTime = microtime(true);try {$this->listener->authenticate($event);} catch (LazyResponseException $e) {$this->response = $e->getResponse();throw $e;} finally {
in
vendor/symfony/security-http/Firewall/AbstractListener.php
->
authenticate
(line 26)
abstract class AbstractListener implements FirewallListenerInterface{final public function __invoke(RequestEvent $event): void{if (false !== $this->supports($event->getRequest())) {$this->authenticate($event);}}public static function getPriority(): int{
in
vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php
->
__invoke
(line 83)
}, $listener, FirewallContext::class)();$listener($event);} else {$wrappedListener = $listener instanceof FirewallListenerInterface ? new WrappedLazyListener($listener) : new WrappedListener($listener);$wrappedListener($event);$wrappedListeners[] = $wrappedListener->getInfo();if (!$authenticatorManagerListener && $listener instanceof TraceableAuthenticatorManagerListener) {$authenticatorManagerListener = $listener;}}
in
vendor/symfony/security-http/Firewall.php
->
callListeners
(line 95)
if (null !== $logoutListener) {yield $logoutListener;}};$this->callListeners($event, $authenticationListeners());}/*** @return void*/
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 116)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 220)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 142)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 157)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 208)
if (!$this->handlingHttpCache) {$this->resetServices = true;}try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/var/www/vhosts/forca.run/test.forca.run/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 15:21:03 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "88a7b3"
},
"request_uri": "https://test.forca.run/_profiler/88a7b3?panel=exception&type=request",
"method": "GET"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| INFO 15:21:03 | deprecation |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement. {
"exception": {}
}
|
| INFO 15:21:03 | deprecation |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement. {
"exception": {}
}
|
| INFO 15:21:03 | deprecation |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement. {
"exception": {}
}
|
| INFO 15:21:03 | deprecation |
User Deprecated: Since symfony/validator 6.4: Method "Symfony\Component\Validator\ValidatorBuilder::setDoctrineAnnotationReader()" is deprecated without replacement. {
"exception": {}
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 15:21:03 | 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 15:21:03 | 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 15:21:03 | event |
Notified event "kernel.controller_arguments" to listener "ContainerWFRQu04\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerWFRQu04\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
|
| DEBUG 15:21:03 | 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 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 15:21:03 | 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 15:21:03 | 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 15:21:03 | event |
Notified event "kernel.controller_arguments" to listener "ContainerWFRQu04\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerWFRQu04\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
|
| DEBUG 15:21:03 | 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 15:21:03 | 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 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 15:21:03 | 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 15:21:03 | 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 15:21:03 | 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 15:21:03 | 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 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 15:21:03 | 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 15:21:03 | 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 15:21:03 | event |
Notified event "kernel.controller_arguments" to listener "ContainerWFRQu04\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerWFRQu04\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
|
| DEBUG 15:21:03 | 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 15:21:03 | 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 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 15:21:03 | 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 15:21:03 | 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 15:21:03 | 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 15:21:03 | 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 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 15:21:03 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 15:21:03 | 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 15:21:03 | 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 15:21:03 | event |
Notified event "kernel.controller_arguments" to listener "ContainerWFRQu04\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerWFRQu04\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
|
| DEBUG 15:21:03 | 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)
|