Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ InvalidFieldNameException
case '42702':return new NonUniqueFieldNameException($exception, $query);case '42703':return new InvalidFieldNameException($exception, $query);case '42P01':return new TableNotFoundException($exception, $query);case '42P07':
in
vendor/doctrine/dbal/src/Connection.php
->
convert
(line 1767)
): DriverException {if ($this->exceptionConverter === null) {$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 1706)
Driver\Exception $e,string $sql,array $params = [],array $types = []): DriverException {return $this->handleDriverException($e, new Query($sql, $params, $types));}/*** @internal*/
in
vendor/doctrine/dbal/src/Connection.php
->
convertExceptionDuringQuery
(line 1039)
$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/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php
->
executeQuery
(line 31)
** @return Result*/public function execute(Connection $conn, array $params, array $types){return $conn->executeQuery($this->_sqlStatements, $params, $types, $this->queryCacheProfile);}}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query.php
->
execute
(line 322)
$sqlParams,$types,$this->_em->getConnection()->getParams());return $executor->execute($this->_em->getConnection(), $sqlParams, $types);}/*** @param array<string,mixed> $sqlParams* @param array<string,Type> $types
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
_doExecute
(line 1160)
$setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {$cache->save($cacheItem->set($result + [$realCacheKey => $data]));};}$stmt = $this->_doExecute();if (is_numeric($stmt)) {$setCacheEntry($stmt);return $stmt;
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
executeIgnoreQueryCache
(line 1115)
{if ($this->cacheable && $this->isCacheEnabled()) {return $this->executeUsingQueryCache($parameters, $hydrationMode);}return $this->executeIgnoreQueryCache($parameters, $hydrationMode);}/*** Execute query ignoring second level cache.*
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
execute
(line 914)
* @throws NonUniqueResultException*/public function getOneOrNullResult($hydrationMode = null){try {$result = $this->execute(null, $hydrationMode);} catch (NoResultException $e) {return null;}if ($this->_hydrationMode !== self::HYDRATE_SINGLE_SCALAR && ! $result) {
->addSelect('ga')->andWhere('u.enabled = 1 AND u.deleted=0')->andWhere('u.email = :val')->setParameter('val', $identifier)->getQuery()->getOneOrNullResult();}/** @deprecated since Symfony 5.3 */public function loadUserByUsername(string $username): ?User
$this->userRepository = $userRepository;}public function loadUserByIdentifier(string $identifier): UserInterface{$user = $this->userRepository->loadUserByIdentifier($identifier);if (null === $user) {throw new UserNotFoundException();}
in
vendor/symfony/security-http/Authenticator/Passport/Badge/UserBadge.php
->
loadUserByIdentifier
(line 67)
if (null === $this->user) {if (null === $this->userLoader) {throw new \LogicException(sprintf('No user loader is configured, did you forget to register the "%s" listener?', UserProviderListener::class));}$this->user = ($this->userLoader)($this->userIdentifier);if (!$this->user instanceof UserInterface) {throw new AuthenticationServiceException(sprintf('The user provider must return a UserInterface object, "%s" given.', get_debug_type($this->user)));}}
in
vendor/symfony/security-http/Authenticator/Passport/Passport.php
->
getUser
(line 55)
if (null === $this->user) {if (!$this->hasBadge(UserBadge::class)) {throw new \LogicException('Cannot get the Security user, no username or UserBadge configured for this passport.');}$this->user = $this->getBadge(UserBadge::class)->getUser();}return $this->user;}
in
vendor/symfony/security-http/EventListener/UserCheckerListener.php
->
getUser
(line 43)
$passport = $event->getPassport();if (!$passport instanceof UserPassportInterface || $passport->hasBadge(PreAuthenticatedUserBadge::class)) {return;}$this->userChecker->checkPreAuth($passport->getUser());}public function postCheckCredentials(AuthenticationSuccessEvent $event): void{$user = $event->getAuthenticationToken()->getUser();
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
preCheckCredentials
(line 270)
$closure = static function (...$args) use (&$listener, &$closure) {if ($listener[0] instanceof \Closure) {$listener[0] = $listener[0]();$listener[1] = $listener[1] ?? '__invoke';}($closure = \Closure::fromCallable($listener))(...$args);};} else {$closure = $listener instanceof \Closure || $listener instanceof WrappedListener ? $listener : \Closure::fromCallable($listener);}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
::
Symfony\Component\EventDispatcher\{closure}
(line 230)
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 59)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
dispatch
(line 183)
// get the passport from the Authenticator$passport = $authenticator->authenticate($request);// check the passport (e.g. password checking)$event = new CheckPassportEvent($authenticator, $passport);$this->eventDispatcher->dispatch($event);// check if all badges are resolved$resolvedBadges = [];foreach ($passport->getBadges() as $badge) {if (!$badge->isResolved()) {
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
executeAuthenticator
(line 160)
}continue;}$response = $this->executeAuthenticator($authenticator, $request);if (null !== $response) {if (null !== $this->logger) {$this->logger->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => \get_class($authenticator)]);}
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 65)
$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 49)
public function authenticate(RequestEvent $event){$startTime = microtime(true);try {$ret = $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){if (false !== $this->supports($event->getRequest())) {$this->authenticate($event);}}public static function getPriority(): int{
in
vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php
->
__invoke
(line 73)
}, $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 92)
if (null !== $logoutListener) {yield $logoutListener;}};$this->callListeners($event, $authenticationListeners());}public function onKernelFinishRequest(FinishRequestEvent $event){$request = $event->getRequest();
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 117)
$this->called = true;$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);if ($e->isStarted()) {$e->stop();}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 230)
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 59)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
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 128)
{$this->requestStack->push($request);// 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 74)
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true){$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$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)
$this->request = $request;}public function run(): int{$response = $this->kernel->handle($this->request);$response->send();if ($this->kernel instanceof TerminableInterface) {$this->kernel->terminate($this->request, $response);}
in
vendor/autoload_runtime.php
->
run
(line 35)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/ed1/sites/back-eidetic/htdocs/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 26)
} else {$code = $exception->getCode();$sqlState = null;}return new self($exception->getMessage(), $sqlState, $code, $exception);}}
in
vendor/doctrine/dbal/src/Driver/PDO/Statement.php
::
new
(line 103)
public function execute($params = null): ResultInterface{try {$this->stmt->execute($params);} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);}
in
vendor/doctrine/dbal/src/Connection.php
->
execute
(line 1029)
}$stmt = $connection->prepare($sql);if (count($types) > 0) {$this->_bindTypedValues($stmt, $params, $types);$result = $stmt->execute();} else {$result = $stmt->execute($params);}} else {$result = $connection->query($sql);
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php
->
executeQuery
(line 31)
** @return Result*/public function execute(Connection $conn, array $params, array $types){return $conn->executeQuery($this->_sqlStatements, $params, $types, $this->queryCacheProfile);}}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query.php
->
execute
(line 322)
$sqlParams,$types,$this->_em->getConnection()->getParams());return $executor->execute($this->_em->getConnection(), $sqlParams, $types);}/*** @param array<string,mixed> $sqlParams* @param array<string,Type> $types
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
_doExecute
(line 1160)
$setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {$cache->save($cacheItem->set($result + [$realCacheKey => $data]));};}$stmt = $this->_doExecute();if (is_numeric($stmt)) {$setCacheEntry($stmt);return $stmt;
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
executeIgnoreQueryCache
(line 1115)
{if ($this->cacheable && $this->isCacheEnabled()) {return $this->executeUsingQueryCache($parameters, $hydrationMode);}return $this->executeIgnoreQueryCache($parameters, $hydrationMode);}/*** Execute query ignoring second level cache.*
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
execute
(line 914)
* @throws NonUniqueResultException*/public function getOneOrNullResult($hydrationMode = null){try {$result = $this->execute(null, $hydrationMode);} catch (NoResultException $e) {return null;}if ($this->_hydrationMode !== self::HYDRATE_SINGLE_SCALAR && ! $result) {
->addSelect('ga')->andWhere('u.enabled = 1 AND u.deleted=0')->andWhere('u.email = :val')->setParameter('val', $identifier)->getQuery()->getOneOrNullResult();}/** @deprecated since Symfony 5.3 */public function loadUserByUsername(string $username): ?User
$this->userRepository = $userRepository;}public function loadUserByIdentifier(string $identifier): UserInterface{$user = $this->userRepository->loadUserByIdentifier($identifier);if (null === $user) {throw new UserNotFoundException();}
in
vendor/symfony/security-http/Authenticator/Passport/Badge/UserBadge.php
->
loadUserByIdentifier
(line 67)
if (null === $this->user) {if (null === $this->userLoader) {throw new \LogicException(sprintf('No user loader is configured, did you forget to register the "%s" listener?', UserProviderListener::class));}$this->user = ($this->userLoader)($this->userIdentifier);if (!$this->user instanceof UserInterface) {throw new AuthenticationServiceException(sprintf('The user provider must return a UserInterface object, "%s" given.', get_debug_type($this->user)));}}
in
vendor/symfony/security-http/Authenticator/Passport/Passport.php
->
getUser
(line 55)
if (null === $this->user) {if (!$this->hasBadge(UserBadge::class)) {throw new \LogicException('Cannot get the Security user, no username or UserBadge configured for this passport.');}$this->user = $this->getBadge(UserBadge::class)->getUser();}return $this->user;}
in
vendor/symfony/security-http/EventListener/UserCheckerListener.php
->
getUser
(line 43)
$passport = $event->getPassport();if (!$passport instanceof UserPassportInterface || $passport->hasBadge(PreAuthenticatedUserBadge::class)) {return;}$this->userChecker->checkPreAuth($passport->getUser());}public function postCheckCredentials(AuthenticationSuccessEvent $event): void{$user = $event->getAuthenticationToken()->getUser();
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
preCheckCredentials
(line 270)
$closure = static function (...$args) use (&$listener, &$closure) {if ($listener[0] instanceof \Closure) {$listener[0] = $listener[0]();$listener[1] = $listener[1] ?? '__invoke';}($closure = \Closure::fromCallable($listener))(...$args);};} else {$closure = $listener instanceof \Closure || $listener instanceof WrappedListener ? $listener : \Closure::fromCallable($listener);}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
::
Symfony\Component\EventDispatcher\{closure}
(line 230)
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 59)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
dispatch
(line 183)
// get the passport from the Authenticator$passport = $authenticator->authenticate($request);// check the passport (e.g. password checking)$event = new CheckPassportEvent($authenticator, $passport);$this->eventDispatcher->dispatch($event);// check if all badges are resolved$resolvedBadges = [];foreach ($passport->getBadges() as $badge) {if (!$badge->isResolved()) {
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
executeAuthenticator
(line 160)
}continue;}$response = $this->executeAuthenticator($authenticator, $request);if (null !== $response) {if (null !== $this->logger) {$this->logger->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => \get_class($authenticator)]);}
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 65)
$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 49)
public function authenticate(RequestEvent $event){$startTime = microtime(true);try {$ret = $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){if (false !== $this->supports($event->getRequest())) {$this->authenticate($event);}}public static function getPriority(): int{
in
vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php
->
__invoke
(line 73)
}, $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 92)
if (null !== $logoutListener) {yield $logoutListener;}};$this->callListeners($event, $authenticationListeners());}public function onKernelFinishRequest(FinishRequestEvent $event){$request = $event->getRequest();
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 117)
$this->called = true;$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);if ($e->isStarted()) {$e->stop();}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 230)
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 59)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
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 128)
{$this->requestStack->push($request);// 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 74)
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true){$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$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)
$this->request = $request;}public function run(): int{$response = $this->kernel->handle($this->request);$response->send();if ($this->kernel instanceof TerminableInterface) {$this->kernel->terminate($this->request, $response);}
in
vendor/autoload_runtime.php
->
run
(line 35)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/ed1/sites/back-eidetic/htdocs/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/Statement.php
(line 101)
* {@inheritdoc}*/public function execute($params = null): ResultInterface{try {$this->stmt->execute($params);} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);
in
vendor/doctrine/dbal/src/Driver/PDO/Statement.php
->
execute
(line 101)
* {@inheritdoc}*/public function execute($params = null): ResultInterface{try {$this->stmt->execute($params);} catch (PDOException $exception) {throw Exception::new($exception);}return new Result($this->stmt);
in
vendor/doctrine/dbal/src/Connection.php
->
execute
(line 1029)
}$stmt = $connection->prepare($sql);if (count($types) > 0) {$this->_bindTypedValues($stmt, $params, $types);$result = $stmt->execute();} else {$result = $stmt->execute($params);}} else {$result = $connection->query($sql);
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php
->
executeQuery
(line 31)
** @return Result*/public function execute(Connection $conn, array $params, array $types){return $conn->executeQuery($this->_sqlStatements, $params, $types, $this->queryCacheProfile);}}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query.php
->
execute
(line 322)
$sqlParams,$types,$this->_em->getConnection()->getParams());return $executor->execute($this->_em->getConnection(), $sqlParams, $types);}/*** @param array<string,mixed> $sqlParams* @param array<string,Type> $types
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
_doExecute
(line 1160)
$setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {$cache->save($cacheItem->set($result + [$realCacheKey => $data]));};}$stmt = $this->_doExecute();if (is_numeric($stmt)) {$setCacheEntry($stmt);return $stmt;
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
executeIgnoreQueryCache
(line 1115)
{if ($this->cacheable && $this->isCacheEnabled()) {return $this->executeUsingQueryCache($parameters, $hydrationMode);}return $this->executeIgnoreQueryCache($parameters, $hydrationMode);}/*** Execute query ignoring second level cache.*
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
execute
(line 914)
* @throws NonUniqueResultException*/public function getOneOrNullResult($hydrationMode = null){try {$result = $this->execute(null, $hydrationMode);} catch (NoResultException $e) {return null;}if ($this->_hydrationMode !== self::HYDRATE_SINGLE_SCALAR && ! $result) {
->addSelect('ga')->andWhere('u.enabled = 1 AND u.deleted=0')->andWhere('u.email = :val')->setParameter('val', $identifier)->getQuery()->getOneOrNullResult();}/** @deprecated since Symfony 5.3 */public function loadUserByUsername(string $username): ?User
$this->userRepository = $userRepository;}public function loadUserByIdentifier(string $identifier): UserInterface{$user = $this->userRepository->loadUserByIdentifier($identifier);if (null === $user) {throw new UserNotFoundException();}
in
vendor/symfony/security-http/Authenticator/Passport/Badge/UserBadge.php
->
loadUserByIdentifier
(line 67)
if (null === $this->user) {if (null === $this->userLoader) {throw new \LogicException(sprintf('No user loader is configured, did you forget to register the "%s" listener?', UserProviderListener::class));}$this->user = ($this->userLoader)($this->userIdentifier);if (!$this->user instanceof UserInterface) {throw new AuthenticationServiceException(sprintf('The user provider must return a UserInterface object, "%s" given.', get_debug_type($this->user)));}}
in
vendor/symfony/security-http/Authenticator/Passport/Passport.php
->
getUser
(line 55)
if (null === $this->user) {if (!$this->hasBadge(UserBadge::class)) {throw new \LogicException('Cannot get the Security user, no username or UserBadge configured for this passport.');}$this->user = $this->getBadge(UserBadge::class)->getUser();}return $this->user;}
in
vendor/symfony/security-http/EventListener/UserCheckerListener.php
->
getUser
(line 43)
$passport = $event->getPassport();if (!$passport instanceof UserPassportInterface || $passport->hasBadge(PreAuthenticatedUserBadge::class)) {return;}$this->userChecker->checkPreAuth($passport->getUser());}public function postCheckCredentials(AuthenticationSuccessEvent $event): void{$user = $event->getAuthenticationToken()->getUser();
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
preCheckCredentials
(line 270)
$closure = static function (...$args) use (&$listener, &$closure) {if ($listener[0] instanceof \Closure) {$listener[0] = $listener[0]();$listener[1] = $listener[1] ?? '__invoke';}($closure = \Closure::fromCallable($listener))(...$args);};} else {$closure = $listener instanceof \Closure || $listener instanceof WrappedListener ? $listener : \Closure::fromCallable($listener);}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
::
Symfony\Component\EventDispatcher\{closure}
(line 230)
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 59)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
dispatch
(line 183)
// get the passport from the Authenticator$passport = $authenticator->authenticate($request);// check the passport (e.g. password checking)$event = new CheckPassportEvent($authenticator, $passport);$this->eventDispatcher->dispatch($event);// check if all badges are resolved$resolvedBadges = [];foreach ($passport->getBadges() as $badge) {if (!$badge->isResolved()) {
in
vendor/symfony/security-http/Authentication/AuthenticatorManager.php
->
executeAuthenticator
(line 160)
}continue;}$response = $this->executeAuthenticator($authenticator, $request);if (null !== $response) {if (null !== $this->logger) {$this->logger->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => \get_class($authenticator)]);}
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 65)
$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 49)
public function authenticate(RequestEvent $event){$startTime = microtime(true);try {$ret = $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){if (false !== $this->supports($event->getRequest())) {$this->authenticate($event);}}public static function getPriority(): int{
in
vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php
->
__invoke
(line 73)
}, $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 92)
if (null !== $logoutListener) {yield $logoutListener;}};$this->callListeners($event, $authenticationListeners());}public function onKernelFinishRequest(FinishRequestEvent $event){$request = $event->getRequest();
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 117)
$this->called = true;$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);if ($e->isStarted()) {$e->stop();}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 230)
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 59)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
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 128)
{$this->requestStack->push($request);// 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 74)
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true){$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$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)
$this->request = $request;}public function run(): int{$response = $this->kernel->handle($this->request);$response->send();if ($this->kernel instanceof TerminableInterface) {$this->kernel->terminate($this->request, $response);}
in
vendor/autoload_runtime.php
->
run
(line 35)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/ed1/sites/back-eidetic/htdocs/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 18:03:40 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "a4e5b2"
},
"request_uri": "https://back.eidetic.eu/_profiler/a4e5b2?panel=exception",
"method": "GET"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\UserLocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\UserLocaleSubscriber::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\QueryParameterValidateListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::handleLegacyEaContext". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::handleLegacyEaContext"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\AddFormatListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\EventListener\\AddFormatListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurity". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurity"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\DeserializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\EventListener\\DeserializeListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurityPostDenormalize". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Bridge\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 18:03:40 | 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 18:03:40 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\UserLocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\UserLocaleSubscriber::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\QueryParameterValidateListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::handleLegacyEaContext". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::handleLegacyEaContext"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\AddFormatListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\EventListener\\AddFormatListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurity". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurity"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\DeserializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\EventListener\\DeserializeListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurityPostDenormalize". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Bridge\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 18:03:40 | 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 18:03:40 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| DEBUG 18:03:40 | 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 18:03:40 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "ApiPlatform\Core\Hydra\EventListener\AddLinkHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "ApiPlatform\\Core\\Hydra\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "ApiPlatform\Core\HttpCache\EventListener\AddHeadersListener::onKernelResponse". {
"event": "kernel.response",
"listener": "ApiPlatform\\Core\\HttpCache\\EventListener\\AddHeadersListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | 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 18:03:40 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
|
| DEBUG 18:03:40 | 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 18:03:40 | 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 18:03:40 | 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 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\UserLocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\UserLocaleSubscriber::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\QueryParameterValidateListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::handleLegacyEaContext". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::handleLegacyEaContext"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\AddFormatListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\EventListener\\AddFormatListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurity". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurity"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\DeserializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\EventListener\\DeserializeListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurityPostDenormalize". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Bridge\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 18:03:40 | 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 18:03:40 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| DEBUG 18:03:40 | 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 18:03:40 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "ApiPlatform\Core\Hydra\EventListener\AddLinkHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "ApiPlatform\\Core\\Hydra\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "ApiPlatform\Core\HttpCache\EventListener\AddHeadersListener::onKernelResponse". {
"event": "kernel.response",
"listener": "ApiPlatform\\Core\\HttpCache\\EventListener\\AddHeadersListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 18:03:40 | 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 18:03:40 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
|
| DEBUG 18:03:40 | 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 18:03:40 | 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 18:03:40 | 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 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\UserLocaleSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\UserLocaleSubscriber::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\QueryParameterValidateListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\EventListener\\QueryParameterValidateListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::handleLegacyEaContext". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::handleLegacyEaContext"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\AddFormatListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\EventListener\\AddFormatListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurity". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurity"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\DeserializeListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\EventListener\\DeserializeListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurityPostDenormalize". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurityPostDenormalize"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Bridge\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". {
"event": "kernel.request",
"listener": "ApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 18:03:40 | 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 18:03:40 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 18:03:40 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
Stack Traces 3
|
[3/3]
InvalidFieldNameException
|
|---|
Doctrine\DBAL\Exception\InvalidFieldNameException:
An exception occurred while executing a query: SQLSTATE[42703]: Undefined column: 7 ERREUR: la colonne u0_.phone n'existe pas
LINE 1: ..., u0_.last_name AS last_name_4, u0_.gsm AS gsm_5, u0_.phone ...
^
at vendor/doctrine/dbal/src/Driver/API/PostgreSQL/ExceptionConverter.php:72
at Doctrine\DBAL\Driver\API\PostgreSQL\ExceptionConverter->convert()
(vendor/doctrine/dbal/src/Connection.php:1767)
at Doctrine\DBAL\Connection->handleDriverException()
(vendor/doctrine/dbal/src/Connection.php:1706)
at Doctrine\DBAL\Connection->convertExceptionDuringQuery()
(vendor/doctrine/dbal/src/Connection.php:1039)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31)
at Doctrine\ORM\Query\Exec\SingleSelectExecutor->execute()
(vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:322)
at Doctrine\ORM\Query->_doExecute()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1160)
at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1115)
at Doctrine\ORM\AbstractQuery->execute()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:914)
at Doctrine\ORM\AbstractQuery->getOneOrNullResult()
(src/Repository/UserRepository.php:66)
at App\Repository\UserRepository->loadUserByIdentifier()
(src/Security/UserApiProvider.php:29)
at App\Security\UserApiProvider->loadUserByIdentifier()
(vendor/symfony/security-http/Authenticator/Passport/Badge/UserBadge.php:67)
at Symfony\Component\Security\Http\Authenticator\Passport\Badge\UserBadge->getUser()
(vendor/symfony/security-http/Authenticator/Passport/Passport.php:55)
at Symfony\Component\Security\Http\Authenticator\Passport\Passport->getUser()
(vendor/symfony/security-http/EventListener/UserCheckerListener.php:43)
at Symfony\Component\Security\Http\EventListener\UserCheckerListener->preCheckCredentials()
(vendor/symfony/event-dispatcher/EventDispatcher.php:270)
at Symfony\Component\EventDispatcher\EventDispatcher::Symfony\Component\EventDispatcher\{closure}()
(vendor/symfony/event-dispatcher/EventDispatcher.php:230)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
(vendor/symfony/event-dispatcher/EventDispatcher.php:59)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
(vendor/symfony/security-http/Authentication/AuthenticatorManager.php:183)
at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticator()
(vendor/symfony/security-http/Authentication/AuthenticatorManager.php:160)
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:65)
at Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticatorManagerListener->authenticate()
(vendor/symfony/security-bundle/Debug/WrappedLazyListener.php:49)
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:73)
at Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener->callListeners()
(vendor/symfony/security-http/Firewall.php:92)
at Symfony\Component\Security\Http\Firewall->onKernelRequest()
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
(vendor/symfony/event-dispatcher/EventDispatcher.php:230)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
(vendor/symfony/event-dispatcher/EventDispatcher.php:59)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
(vendor/symfony/http-kernel/HttpKernel.php:128)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:74)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:202)
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:35)
at require_once('/ed1/sites/back-eidetic/htdocs/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[2/3]
Exception
|
|---|
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[42703]: Undefined column: 7 ERREUR: la colonne u0_.phone n'existe pas
LINE 1: ..., u0_.last_name AS last_name_4, u0_.gsm AS gsm_5, u0_.phone ...
^
at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:26
at Doctrine\DBAL\Driver\PDO\Exception::new()
(vendor/doctrine/dbal/src/Driver/PDO/Statement.php:103)
at Doctrine\DBAL\Driver\PDO\Statement->execute()
(vendor/doctrine/dbal/src/Connection.php:1029)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31)
at Doctrine\ORM\Query\Exec\SingleSelectExecutor->execute()
(vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:322)
at Doctrine\ORM\Query->_doExecute()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1160)
at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1115)
at Doctrine\ORM\AbstractQuery->execute()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:914)
at Doctrine\ORM\AbstractQuery->getOneOrNullResult()
(src/Repository/UserRepository.php:66)
at App\Repository\UserRepository->loadUserByIdentifier()
(src/Security/UserApiProvider.php:29)
at App\Security\UserApiProvider->loadUserByIdentifier()
(vendor/symfony/security-http/Authenticator/Passport/Badge/UserBadge.php:67)
at Symfony\Component\Security\Http\Authenticator\Passport\Badge\UserBadge->getUser()
(vendor/symfony/security-http/Authenticator/Passport/Passport.php:55)
at Symfony\Component\Security\Http\Authenticator\Passport\Passport->getUser()
(vendor/symfony/security-http/EventListener/UserCheckerListener.php:43)
at Symfony\Component\Security\Http\EventListener\UserCheckerListener->preCheckCredentials()
(vendor/symfony/event-dispatcher/EventDispatcher.php:270)
at Symfony\Component\EventDispatcher\EventDispatcher::Symfony\Component\EventDispatcher\{closure}()
(vendor/symfony/event-dispatcher/EventDispatcher.php:230)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
(vendor/symfony/event-dispatcher/EventDispatcher.php:59)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
(vendor/symfony/security-http/Authentication/AuthenticatorManager.php:183)
at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticator()
(vendor/symfony/security-http/Authentication/AuthenticatorManager.php:160)
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:65)
at Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticatorManagerListener->authenticate()
(vendor/symfony/security-bundle/Debug/WrappedLazyListener.php:49)
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:73)
at Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener->callListeners()
(vendor/symfony/security-http/Firewall.php:92)
at Symfony\Component\Security\Http\Firewall->onKernelRequest()
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
(vendor/symfony/event-dispatcher/EventDispatcher.php:230)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
(vendor/symfony/event-dispatcher/EventDispatcher.php:59)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
(vendor/symfony/http-kernel/HttpKernel.php:128)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:74)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:202)
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:35)
at require_once('/ed1/sites/back-eidetic/htdocs/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/3]
PDOException
|
|---|
PDOException:
SQLSTATE[42703]: Undefined column: 7 ERREUR: la colonne u0_.phone n'existe pas
LINE 1: ..., u0_.last_name AS last_name_4, u0_.gsm AS gsm_5, u0_.phone ...
^
at vendor/doctrine/dbal/src/Driver/PDO/Statement.php:101
at PDOStatement->execute()
(vendor/doctrine/dbal/src/Driver/PDO/Statement.php:101)
at Doctrine\DBAL\Driver\PDO\Statement->execute()
(vendor/doctrine/dbal/src/Connection.php:1029)
at Doctrine\DBAL\Connection->executeQuery()
(vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:31)
at Doctrine\ORM\Query\Exec\SingleSelectExecutor->execute()
(vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:322)
at Doctrine\ORM\Query->_doExecute()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1160)
at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1115)
at Doctrine\ORM\AbstractQuery->execute()
(vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:914)
at Doctrine\ORM\AbstractQuery->getOneOrNullResult()
(src/Repository/UserRepository.php:66)
at App\Repository\UserRepository->loadUserByIdentifier()
(src/Security/UserApiProvider.php:29)
at App\Security\UserApiProvider->loadUserByIdentifier()
(vendor/symfony/security-http/Authenticator/Passport/Badge/UserBadge.php:67)
at Symfony\Component\Security\Http\Authenticator\Passport\Badge\UserBadge->getUser()
(vendor/symfony/security-http/Authenticator/Passport/Passport.php:55)
at Symfony\Component\Security\Http\Authenticator\Passport\Passport->getUser()
(vendor/symfony/security-http/EventListener/UserCheckerListener.php:43)
at Symfony\Component\Security\Http\EventListener\UserCheckerListener->preCheckCredentials()
(vendor/symfony/event-dispatcher/EventDispatcher.php:270)
at Symfony\Component\EventDispatcher\EventDispatcher::Symfony\Component\EventDispatcher\{closure}()
(vendor/symfony/event-dispatcher/EventDispatcher.php:230)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
(vendor/symfony/event-dispatcher/EventDispatcher.php:59)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
(vendor/symfony/security-http/Authentication/AuthenticatorManager.php:183)
at Symfony\Component\Security\Http\Authentication\AuthenticatorManager->executeAuthenticator()
(vendor/symfony/security-http/Authentication/AuthenticatorManager.php:160)
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:65)
at Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticatorManagerListener->authenticate()
(vendor/symfony/security-bundle/Debug/WrappedLazyListener.php:49)
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:73)
at Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener->callListeners()
(vendor/symfony/security-http/Firewall.php:92)
at Symfony\Component\Security\Http\Firewall->onKernelRequest()
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
(vendor/symfony/event-dispatcher/EventDispatcher.php:230)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
(vendor/symfony/event-dispatcher/EventDispatcher.php:59)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
(vendor/symfony/http-kernel/HttpKernel.php:128)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
(vendor/symfony/http-kernel/HttpKernel.php:74)
at Symfony\Component\HttpKernel\HttpKernel->handle()
(vendor/symfony/http-kernel/Kernel.php:202)
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:35)
at require_once('/ed1/sites/back-eidetic/htdocs/vendor/autoload_runtime.php')
(public/index.php:5)
|