https://mbobanen.staging.03.getnoticed.nl/_profiler/d26017?panel=httplug

Exceptions

An exception occurred in the driver: SQLSTATE[HY000] [2002] Connection refused

Exceptions 3

Doctrine\DBAL\Exception\ ConnectionException

  1.             case 1370:
  2.             case 1429:
  3.             case 2002:
  4.             case 2005:
  5.             case 2054:
  6.                 return new ConnectionException($exception$query);
  7.             case 2006:
  8.                 return new ConnectionLost($exception$query);
  9.             case 1048:
  1.     ): DriverException {
  2.         if ($this->exceptionConverter === null) {
  3.             $this->exceptionConverter $this->_driver->getExceptionConverter();
  4.         }
  5.         $exception $this->exceptionConverter->convert($driverException$query);
  6.         if ($exception instanceof ConnectionLost) {
  7.             $this->close();
  8.         }
in vendor/doctrine/dbal/src/Connection.php -> handleDriverException (line 1757)
  1.     /**
  2.      * @internal
  3.      */
  4.     final public function convertException(Driver\Exception $e): DriverException
  5.     {
  6.         return $this->handleDriverException($enull);
  7.     }
  8.     /**
  9.      * @param array<int, mixed>|array<string, mixed>                               $params
  10.      * @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types
in vendor/doctrine/dbal/src/Connection.php -> convertException (line 343)
  1.         }
  2.         try {
  3.             $this->_conn $this->_driver->connect($this->params);
  4.         } catch (Driver\Exception $e) {
  5.             throw $this->convertException($e);
  6.         }
  7.         if ($this->autoCommit === false) {
  8.             $this->beginTransaction();
  9.         }
  1.             'https://github.com/doctrine/dbal/issues/4966',
  2.             'Connection::getWrappedConnection() is deprecated.'
  3.                 ' Use Connection::getNativeConnection() to access the native connection.'
  4.         );
  5.         $this->connect();
  6.         assert($this->_conn !== null);
  7.         return $this->_conn;
  8.     }
in vendor/doctrine/dbal/src/Connection.php -> getWrappedConnection (line 1029)
  1.     ): Result {
  2.         if ($qcp !== null) {
  3.             return $this->executeCacheQuery($sql$params$types$qcp);
  4.         }
  5.         $connection $this->getWrappedConnection();
  6.         $logger $this->_config->getSQLLogger();
  7.         if ($logger !== null) {
  8.             $logger->startQuery($sql$params$types);
  9.         }
in vendor/doctrine/dbal/src/Connection.php -> executeQuery (line 565)
  1.      *
  2.      * @throws Exception
  3.      */
  4.     public function fetchOne(string $query, array $params = [], array $types = [])
  5.     {
  6.         return $this->executeQuery($query$params$types)->fetchOne();
  7.     }
  8.     /**
  9.      * Whether an actual connection to the database is established.
  10.      *
  1.      */
  2.     public function getDatabase()
  3.     {
  4.         $platform $this->getDatabasePlatform();
  5.         $query    $platform->getDummySelectSQL($platform->getCurrentDatabaseExpression());
  6.         $database $this->fetchOne($query);
  7.         assert(is_string($database) || $database === null);
  8.         return $database;
  9.     }
  1.             'doctrine/dbal',
  2.             'https://github.com/doctrine/dbal/pull/4821',
  3.             'AbstractSchemaManager::getSchemaSearchPaths() is deprecated.'
  4.         );
  5.         $database $this->_conn->getDatabase();
  6.         if ($database !== null) {
  7.             return [$database];
  8.         }
  1.     public function createSchemaConfig()
  2.     {
  3.         $schemaConfig = new SchemaConfig();
  4.         $schemaConfig->setMaxIdentifierLength($this->_platform->getMaxIdentifierLength());
  5.         $searchPaths $this->getSchemaSearchPaths();
  6.         if (isset($searchPaths[0])) {
  7.             $schemaConfig->setName($searchPaths[0]);
  8.         }
  9.         $params $this->_conn->getParams();
in vendor/symfony/security-acl/Dbal/Schema.php -> createSchemaConfig (line 170)
  1.         $schemaManager method_exists($connection'createSchemaManager')
  2.             ? $connection->createSchemaManager()
  3.             : $connection->getSchemaManager()
  4.         ;
  5.         return $schemaManager->createSchemaConfig();
  6.     }
  7. }
in vendor/symfony/security-acl/Dbal/Schema.php -> createSchemaConfig (line 34)
  1.     /**
  2.      * @param array $options the names for tables
  3.      */
  4.     public function __construct(array $optionsConnection $connection null)
  5.     {
  6.         $schemaConfig $this->createSchemaConfig($connection);
  7.         parent::__construct([], [], $schemaConfig);
  8.         $this->options $options;
  9.         $this->platform $connection $connection->getDatabasePlatform() : null;
  1.         if (isset($this->services['security.acl.dbal.schema'])) {
  2.             return $this->services['security.acl.dbal.schema'];
  3.         }
  4.         return $this->services['security.acl.dbal.schema'] = new \Symfony\Component\Security\Acl\Dbal\Schema(['class_table_name' => 'acl_classes''entry_table_name' => 'acl_entries''oid_table_name' => 'acl_object_identities''oid_ancestors_table_name' => 'acl_object_identity_ancestors''sid_table_name' => 'acl_security_identities'], $a);
  5.     }
  6.     /**
  7.      * Gets the public 'security.acl.provider' shared service.
  8.      *
in var/cache/dev/Container8br3KZ7/App_KernelDevDebugContainer.php -> getSecurity_Acl_Dbal_SchemaService (line 52422)
  1.      */
  2.     protected function getSecurity_Acl_Dbal_SchemaListenerService()
  3.     {
  4.         include_once \dirname(__DIR__4).'/vendor/symfony/acl-bundle/src/EventListener/AclSchemaListener.php';
  5.         $a = ($this->services['security.acl.dbal.schema'] ?? $this->getSecurity_Acl_Dbal_SchemaService());
  6.         if (isset($this->privates['security.acl.dbal.schema_listener'])) {
  7.             return $this->privates['security.acl.dbal.schema_listener'];
  8.         }
in vendor/symfony/dependency-injection/Container.php -> getSecurity_Acl_Dbal_SchemaListenerService (line 431)
  1.         }
  2.         if (null === $method) {
  3.             return false !== $registry $this->{$registry}[$id] ?? null null;
  4.         }
  5.         if (false !== $registry) {
  6.             return $this->{$registry}[$id] ?? $this->{$registry}[$id] = $load $this->load($method) : $this->{$method}();
  7.         }
  8.         if (!$load) {
  9.             return $this->{$method}();
  10.         }
  1.      *
  2.      * @return mixed
  3.      */
  4.     public function get(string $id)
  5.     {
  6.         return isset($this->serviceMap[$id]) ? ($this->factory)(...$this->serviceMap[$id]) : parent::get($id);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     private function initializeListeners(string $eventName)
  2.     {
  3.         $this->initialized[$eventName] = true;
  4.         foreach ($this->listeners[$eventName] as $hash => $listener) {
  5.             if (\is_string($listener)) {
  6.                 $this->listeners[$eventName][$hash] = $listener $this->container->get($listener);
  7.                 $this->methods[$eventName][$hash] = $this->getMethod($listener$eventName);
  8.             }
  9.         }
  10.     }
  1.             return $this->listeners[$event];
  2.         }
  3.         foreach ($this->listeners as $event => $listeners) {
  4.             if (!isset($this->initialized[$event])) {
  5.                 $this->initializeListeners($event);
  6.             }
  7.         }
  8.         return $this->listeners;
  9.     }
  1.     {
  2.         if (null === $this->listener) {
  3.             $em $this->getEntityManager();
  4.             $evm $em->getEventManager();
  5.             foreach ($evm->getListeners() as $listeners) {
  6.                 foreach ($listeners as $listener) {
  7.                     if ($listener instanceof SoftDeleteableListener) {
  8.                         $this->listener $listener;
  9.                         break 2;
  1.         }
  2.         if (true === ($this->disabled[$targetEntity->rootEntityName] ?? false)) {
  3.             return '';
  4.         }
  5.         $config $this->getListener()->getConfiguration($this->getEntityManager(), $targetEntity->name);
  6.         if (!isset($config['softDeleteable']) || !$config['softDeleteable']) {
  7.             return '';
  8.         }
  1.                 return '';
  2.         }
  3.         $filterClauses = [];
  4.         foreach ($this->em->getFilters()->getEnabledFilters() as $filter) {
  5.             $filterExpr $filter->addFilterConstraint($targetEntity$targetTableAlias);
  6.             if ($filterExpr !== '') {
  7.                 $filterClauses[] = '(' $filterExpr ')';
  8.             }
  9.         }
in vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php -> generateFilterConditionSQL (line 1849)
  1.             $filterClauses = [];
  2.             foreach ($this->rootAliases as $dqlAlias) {
  3.                 $class      $this->getMetadataForDqlAlias($dqlAlias);
  4.                 $tableAlias $this->getSQLTableAlias($class->table['name'], $dqlAlias);
  5.                 $filterExpr $this->generateFilterConditionSQL($class$tableAlias);
  6.                 if ($filterExpr) {
  7.                     $filterClauses[] = $filterExpr;
  8.                 }
  9.             }
  1.         $limit    $this->query->getMaxResults();
  2.         $offset   $this->query->getFirstResult();
  3.         $lockMode $this->query->getHint(Query::HINT_LOCK_MODE) ?: LockMode::NONE;
  4.         $sql      $this->walkSelectClause($AST->selectClause)
  5.             . $this->walkFromClause($AST->fromClause)
  6.             . $this->walkWhereClause($AST->whereClause);
  7.         if ($AST->groupByClause) {
  8.             $sql .= $this->walkGroupByClause($AST->groupByClause);
  9.         }
  1.  */
  2. class SingleSelectExecutor extends AbstractSqlExecutor
  3. {
  4.     public function __construct(SelectStatement $ASTSqlWalker $sqlWalker)
  5.     {
  6.         $this->_sqlStatements $sqlWalker->walkSelectStatement($AST);
  7.     }
  8.     /**
  9.      * {@inheritDoc}
  10.      *
  1.                 return $primaryClass->isInheritanceTypeJoined()
  2.                     ? new Exec\MultiTableUpdateExecutor($AST$this)
  3.                     : new Exec\SingleTableDeleteUpdateExecutor($AST$this);
  4.             default:
  5.                 return new Exec\SingleSelectExecutor($AST$this);
  6.         }
  7.     }
  8.     /**
  9.      * Generates a unique, short SQL table alias.
  1.         $outputWalkerClass $this->customOutputWalker ?: SqlWalker::class;
  2.         $outputWalker      = new $outputWalkerClass($this->query$this->parserResult$this->queryComponents);
  3.         // Assign an SQL executor to the parser result
  4.         $this->parserResult->setSqlExecutor($outputWalker->getExecutor($AST));
  5.         return $this->parserResult;
  6.     }
  7.     /**
  1.         }
  2.         // Cache miss.
  3.         $parser = new Parser($this);
  4.         $this->parserResult $parser->parse();
  5.         $queryCache->save($cacheItem->set($this->parserResult)->expiresAfter($this->queryCacheTTL));
  6.         return $this->parserResult;
  7.     }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     protected function _doExecute()
  5.     {
  6.         $executor $this->parse()->getSqlExecutor();
  7.         if ($this->_queryCacheProfile) {
  8.             $executor->setQueryCacheProfile($this->_queryCacheProfile);
  9.         } else {
  10.             $executor->removeQueryCacheProfile();
  1.             $setCacheEntry = static function ($data) use ($cache$result$cacheItem$realCacheKey): void {
  2.                 $cache->save($cacheItem->set($result + [$realCacheKey => $data]));
  3.             };
  4.         }
  5.         $stmt $this->_doExecute();
  6.         if (is_numeric($stmt)) {
  7.             $setCacheEntry($stmt);
  8.             return $stmt;
in vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php -> executeIgnoreQueryCache (line 1142)
  1.     {
  2.         if ($this->cacheable && $this->isCacheEnabled()) {
  3.             return $this->executeUsingQueryCache($parameters$hydrationMode);
  4.         }
  5.         return $this->executeIgnoreQueryCache($parameters$hydrationMode);
  6.     }
  7.     /**
  8.      * Execute query ignoring second level cache.
  9.      *
  1.      *
  2.      * @return mixed
  3.      */
  4.     public function getResult($hydrationMode self::HYDRATE_OBJECT)
  5.     {
  6.         return $this->execute(null$hydrationMode);
  7.     }
  8.     /**
  9.      * Gets the array of results for the query.
  10.      *
AbstractQuery->getResult() in src/Repository/GoogleTagManagerRepository.php (line 32)
  1.         $qb->where('page_script.type = :type')
  2.             ->setParameter('type'GoogleTagManager::TYPE_SCRIPT);
  3.         /** @var GoogleTagManager[] $result */
  4.         $result $qb->getQuery()
  5.             ->getResult();
  6.         return $result;
  7.     }
  8. }
GoogleTagManagerRepository->getAllScripts() in src/Framework/Security/ContentSecurityPolicy/Computer/PageScriptCSPComputer.php (line 25)
  1.         $usedAlgo reset($supportedAlgos);
  2.         if (false === $usedAlgo) {
  3.             return [];
  4.         }
  5.         $shaSet = [];
  6.         $scripts $this->tagManagerRepository->getAllScripts();
  7.         foreach ($scripts as $script) {
  8.             $htmlScript = (string) $script->getScript();
  9.             if (!== preg_match_all('/<script[^>]*+>/i'$htmlScript)) {
  10.                 continue;
  11.             }
  1.     {
  2.         if (HttpKernelInterface::MAIN_REQUEST !== $event->getRequestType()) {
  3.             return;
  4.         }
  5.         $hashes $this->pageScriptCSPComputer->computeShaSet();
  6.         $this->directiveSet->addShaSet('script-src'$hashes);
  7.     }
  8.     public function calculateNonce(RequestEvent $event): void
  9.     {
  1.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function handleRaw(Request $requestint $type self::MAIN_REQUEST): Response
  3.     {
  4.         // request
  5.         $event = new RequestEvent($this$request$type);
  6.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  7.         if ($event->hasResponse()) {
  8.             return $this->filterResponse($event->getResponse(), $request$type);
  9.         }
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle() in public/index.php (line 31)
  1.     $kernel $kernel->getHttpCache();
  2. }
  3. Request::enableHttpMethodParameterOverride();
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Doctrine\DBAL\Driver\PDO\ Exception

SQLSTATE[HY000] [2002] Connection refused

  1.         } else {
  2.             $code     $exception->getCode();
  3.             $sqlState null;
  4.         }
  5.         return new self($exception->getMessage(), $sqlState$code$exception);
  6.     }
  7. }
  1.                 $params['user'] ?? '',
  2.                 $params['password'] ?? '',
  3.                 $driverOptions
  4.             );
  5.         } catch (PDOException $exception) {
  6.             throw Exception::new($exception);
  7.         }
  8.         return new Connection($pdo);
  9.     }
  1.     }
  2.     public function connect(array $params): DriverConnection
  3.     {
  4.         if (!self::$keepStaticConnections) {
  5.             return $this->underlyingDriver->connect($params);
  6.         }
  7.         $key sha1(json_encode($params));
  8.         if (!isset(self::$connections[$key])) {
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function connect(array $params)
  5.     {
  6.         return $this->wrappedDriver->connect($params);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     public function connect(array $params)
  2.     {
  3.         $this->logger->info('Connecting with parameters {params}', ['params' => $this->maskPassword($params)]);
  4.         return new Connection(
  5.             parent::connect($params),
  6.             $this->logger
  7.         );
  8.     }
  9.     /**
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function connect(array $params)
  5.     {
  6.         return $this->wrappedDriver->connect($params);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     }
  2.     public function connect(array $params): Connection
  3.     {
  4.         return new Connection(
  5.             parent::connect($params),
  6.             $this->debugDataHolder,
  7.             $this->stopwatch,
  8.             $this->connectionName
  9.         );
  10.     }
  1.         if ($this->_conn !== null) {
  2.             return false;
  3.         }
  4.         try {
  5.             $this->_conn $this->_driver->connect($this->params);
  6.         } catch (Driver\Exception $e) {
  7.             throw $this->convertException($e);
  8.         }
  9.         if ($this->autoCommit === false) {
  1.             'https://github.com/doctrine/dbal/issues/4966',
  2.             'Connection::getWrappedConnection() is deprecated.'
  3.                 ' Use Connection::getNativeConnection() to access the native connection.'
  4.         );
  5.         $this->connect();
  6.         assert($this->_conn !== null);
  7.         return $this->_conn;
  8.     }
in vendor/doctrine/dbal/src/Connection.php -> getWrappedConnection (line 1029)
  1.     ): Result {
  2.         if ($qcp !== null) {
  3.             return $this->executeCacheQuery($sql$params$types$qcp);
  4.         }
  5.         $connection $this->getWrappedConnection();
  6.         $logger $this->_config->getSQLLogger();
  7.         if ($logger !== null) {
  8.             $logger->startQuery($sql$params$types);
  9.         }
in vendor/doctrine/dbal/src/Connection.php -> executeQuery (line 565)
  1.      *
  2.      * @throws Exception
  3.      */
  4.     public function fetchOne(string $query, array $params = [], array $types = [])
  5.     {
  6.         return $this->executeQuery($query$params$types)->fetchOne();
  7.     }
  8.     /**
  9.      * Whether an actual connection to the database is established.
  10.      *
  1.      */
  2.     public function getDatabase()
  3.     {
  4.         $platform $this->getDatabasePlatform();
  5.         $query    $platform->getDummySelectSQL($platform->getCurrentDatabaseExpression());
  6.         $database $this->fetchOne($query);
  7.         assert(is_string($database) || $database === null);
  8.         return $database;
  9.     }
  1.             'doctrine/dbal',
  2.             'https://github.com/doctrine/dbal/pull/4821',
  3.             'AbstractSchemaManager::getSchemaSearchPaths() is deprecated.'
  4.         );
  5.         $database $this->_conn->getDatabase();
  6.         if ($database !== null) {
  7.             return [$database];
  8.         }
  1.     public function createSchemaConfig()
  2.     {
  3.         $schemaConfig = new SchemaConfig();
  4.         $schemaConfig->setMaxIdentifierLength($this->_platform->getMaxIdentifierLength());
  5.         $searchPaths $this->getSchemaSearchPaths();
  6.         if (isset($searchPaths[0])) {
  7.             $schemaConfig->setName($searchPaths[0]);
  8.         }
  9.         $params $this->_conn->getParams();
in vendor/symfony/security-acl/Dbal/Schema.php -> createSchemaConfig (line 170)
  1.         $schemaManager method_exists($connection'createSchemaManager')
  2.             ? $connection->createSchemaManager()
  3.             : $connection->getSchemaManager()
  4.         ;
  5.         return $schemaManager->createSchemaConfig();
  6.     }
  7. }
in vendor/symfony/security-acl/Dbal/Schema.php -> createSchemaConfig (line 34)
  1.     /**
  2.      * @param array $options the names for tables
  3.      */
  4.     public function __construct(array $optionsConnection $connection null)
  5.     {
  6.         $schemaConfig $this->createSchemaConfig($connection);
  7.         parent::__construct([], [], $schemaConfig);
  8.         $this->options $options;
  9.         $this->platform $connection $connection->getDatabasePlatform() : null;
  1.         if (isset($this->services['security.acl.dbal.schema'])) {
  2.             return $this->services['security.acl.dbal.schema'];
  3.         }
  4.         return $this->services['security.acl.dbal.schema'] = new \Symfony\Component\Security\Acl\Dbal\Schema(['class_table_name' => 'acl_classes''entry_table_name' => 'acl_entries''oid_table_name' => 'acl_object_identities''oid_ancestors_table_name' => 'acl_object_identity_ancestors''sid_table_name' => 'acl_security_identities'], $a);
  5.     }
  6.     /**
  7.      * Gets the public 'security.acl.provider' shared service.
  8.      *
in var/cache/dev/Container8br3KZ7/App_KernelDevDebugContainer.php -> getSecurity_Acl_Dbal_SchemaService (line 52422)
  1.      */
  2.     protected function getSecurity_Acl_Dbal_SchemaListenerService()
  3.     {
  4.         include_once \dirname(__DIR__4).'/vendor/symfony/acl-bundle/src/EventListener/AclSchemaListener.php';
  5.         $a = ($this->services['security.acl.dbal.schema'] ?? $this->getSecurity_Acl_Dbal_SchemaService());
  6.         if (isset($this->privates['security.acl.dbal.schema_listener'])) {
  7.             return $this->privates['security.acl.dbal.schema_listener'];
  8.         }
in vendor/symfony/dependency-injection/Container.php -> getSecurity_Acl_Dbal_SchemaListenerService (line 431)
  1.         }
  2.         if (null === $method) {
  3.             return false !== $registry $this->{$registry}[$id] ?? null null;
  4.         }
  5.         if (false !== $registry) {
  6.             return $this->{$registry}[$id] ?? $this->{$registry}[$id] = $load $this->load($method) : $this->{$method}();
  7.         }
  8.         if (!$load) {
  9.             return $this->{$method}();
  10.         }
  1.      *
  2.      * @return mixed
  3.      */
  4.     public function get(string $id)
  5.     {
  6.         return isset($this->serviceMap[$id]) ? ($this->factory)(...$this->serviceMap[$id]) : parent::get($id);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     private function initializeListeners(string $eventName)
  2.     {
  3.         $this->initialized[$eventName] = true;
  4.         foreach ($this->listeners[$eventName] as $hash => $listener) {
  5.             if (\is_string($listener)) {
  6.                 $this->listeners[$eventName][$hash] = $listener $this->container->get($listener);
  7.                 $this->methods[$eventName][$hash] = $this->getMethod($listener$eventName);
  8.             }
  9.         }
  10.     }
  1.             return $this->listeners[$event];
  2.         }
  3.         foreach ($this->listeners as $event => $listeners) {
  4.             if (!isset($this->initialized[$event])) {
  5.                 $this->initializeListeners($event);
  6.             }
  7.         }
  8.         return $this->listeners;
  9.     }
  1.     {
  2.         if (null === $this->listener) {
  3.             $em $this->getEntityManager();
  4.             $evm $em->getEventManager();
  5.             foreach ($evm->getListeners() as $listeners) {
  6.                 foreach ($listeners as $listener) {
  7.                     if ($listener instanceof SoftDeleteableListener) {
  8.                         $this->listener $listener;
  9.                         break 2;
  1.         }
  2.         if (true === ($this->disabled[$targetEntity->rootEntityName] ?? false)) {
  3.             return '';
  4.         }
  5.         $config $this->getListener()->getConfiguration($this->getEntityManager(), $targetEntity->name);
  6.         if (!isset($config['softDeleteable']) || !$config['softDeleteable']) {
  7.             return '';
  8.         }
  1.                 return '';
  2.         }
  3.         $filterClauses = [];
  4.         foreach ($this->em->getFilters()->getEnabledFilters() as $filter) {
  5.             $filterExpr $filter->addFilterConstraint($targetEntity$targetTableAlias);
  6.             if ($filterExpr !== '') {
  7.                 $filterClauses[] = '(' $filterExpr ')';
  8.             }
  9.         }
in vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php -> generateFilterConditionSQL (line 1849)
  1.             $filterClauses = [];
  2.             foreach ($this->rootAliases as $dqlAlias) {
  3.                 $class      $this->getMetadataForDqlAlias($dqlAlias);
  4.                 $tableAlias $this->getSQLTableAlias($class->table['name'], $dqlAlias);
  5.                 $filterExpr $this->generateFilterConditionSQL($class$tableAlias);
  6.                 if ($filterExpr) {
  7.                     $filterClauses[] = $filterExpr;
  8.                 }
  9.             }
  1.         $limit    $this->query->getMaxResults();
  2.         $offset   $this->query->getFirstResult();
  3.         $lockMode $this->query->getHint(Query::HINT_LOCK_MODE) ?: LockMode::NONE;
  4.         $sql      $this->walkSelectClause($AST->selectClause)
  5.             . $this->walkFromClause($AST->fromClause)
  6.             . $this->walkWhereClause($AST->whereClause);
  7.         if ($AST->groupByClause) {
  8.             $sql .= $this->walkGroupByClause($AST->groupByClause);
  9.         }
  1.  */
  2. class SingleSelectExecutor extends AbstractSqlExecutor
  3. {
  4.     public function __construct(SelectStatement $ASTSqlWalker $sqlWalker)
  5.     {
  6.         $this->_sqlStatements $sqlWalker->walkSelectStatement($AST);
  7.     }
  8.     /**
  9.      * {@inheritDoc}
  10.      *
  1.                 return $primaryClass->isInheritanceTypeJoined()
  2.                     ? new Exec\MultiTableUpdateExecutor($AST$this)
  3.                     : new Exec\SingleTableDeleteUpdateExecutor($AST$this);
  4.             default:
  5.                 return new Exec\SingleSelectExecutor($AST$this);
  6.         }
  7.     }
  8.     /**
  9.      * Generates a unique, short SQL table alias.
  1.         $outputWalkerClass $this->customOutputWalker ?: SqlWalker::class;
  2.         $outputWalker      = new $outputWalkerClass($this->query$this->parserResult$this->queryComponents);
  3.         // Assign an SQL executor to the parser result
  4.         $this->parserResult->setSqlExecutor($outputWalker->getExecutor($AST));
  5.         return $this->parserResult;
  6.     }
  7.     /**
  1.         }
  2.         // Cache miss.
  3.         $parser = new Parser($this);
  4.         $this->parserResult $parser->parse();
  5.         $queryCache->save($cacheItem->set($this->parserResult)->expiresAfter($this->queryCacheTTL));
  6.         return $this->parserResult;
  7.     }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     protected function _doExecute()
  5.     {
  6.         $executor $this->parse()->getSqlExecutor();
  7.         if ($this->_queryCacheProfile) {
  8.             $executor->setQueryCacheProfile($this->_queryCacheProfile);
  9.         } else {
  10.             $executor->removeQueryCacheProfile();
  1.             $setCacheEntry = static function ($data) use ($cache$result$cacheItem$realCacheKey): void {
  2.                 $cache->save($cacheItem->set($result + [$realCacheKey => $data]));
  3.             };
  4.         }
  5.         $stmt $this->_doExecute();
  6.         if (is_numeric($stmt)) {
  7.             $setCacheEntry($stmt);
  8.             return $stmt;
in vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php -> executeIgnoreQueryCache (line 1142)
  1.     {
  2.         if ($this->cacheable && $this->isCacheEnabled()) {
  3.             return $this->executeUsingQueryCache($parameters$hydrationMode);
  4.         }
  5.         return $this->executeIgnoreQueryCache($parameters$hydrationMode);
  6.     }
  7.     /**
  8.      * Execute query ignoring second level cache.
  9.      *
  1.      *
  2.      * @return mixed
  3.      */
  4.     public function getResult($hydrationMode self::HYDRATE_OBJECT)
  5.     {
  6.         return $this->execute(null$hydrationMode);
  7.     }
  8.     /**
  9.      * Gets the array of results for the query.
  10.      *
AbstractQuery->getResult() in src/Repository/GoogleTagManagerRepository.php (line 32)
  1.         $qb->where('page_script.type = :type')
  2.             ->setParameter('type'GoogleTagManager::TYPE_SCRIPT);
  3.         /** @var GoogleTagManager[] $result */
  4.         $result $qb->getQuery()
  5.             ->getResult();
  6.         return $result;
  7.     }
  8. }
GoogleTagManagerRepository->getAllScripts() in src/Framework/Security/ContentSecurityPolicy/Computer/PageScriptCSPComputer.php (line 25)
  1.         $usedAlgo reset($supportedAlgos);
  2.         if (false === $usedAlgo) {
  3.             return [];
  4.         }
  5.         $shaSet = [];
  6.         $scripts $this->tagManagerRepository->getAllScripts();
  7.         foreach ($scripts as $script) {
  8.             $htmlScript = (string) $script->getScript();
  9.             if (!== preg_match_all('/<script[^>]*+>/i'$htmlScript)) {
  10.                 continue;
  11.             }
  1.     {
  2.         if (HttpKernelInterface::MAIN_REQUEST !== $event->getRequestType()) {
  3.             return;
  4.         }
  5.         $hashes $this->pageScriptCSPComputer->computeShaSet();
  6.         $this->directiveSet->addShaSet('script-src'$hashes);
  7.     }
  8.     public function calculateNonce(RequestEvent $event): void
  9.     {
  1.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function handleRaw(Request $requestint $type self::MAIN_REQUEST): Response
  3.     {
  4.         // request
  5.         $event = new RequestEvent($this$request$type);
  6.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  7.         if ($event->hasResponse()) {
  8.             return $this->filterResponse($event->getResponse(), $request$type);
  9.         }
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle() in public/index.php (line 31)
  1.     $kernel $kernel->getHttpCache();
  2. }
  3. Request::enableHttpMethodParameterOverride();
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

PDOException

SQLSTATE[HY000] [2002] Connection refused

  1.             $driverOptions[PDO::ATTR_PERSISTENT] = true;
  2.         }
  3.         try {
  4.             $pdo = new PDO(
  5.                 $this->constructPdoDsn($params),
  6.                 $params['user'] ?? '',
  7.                 $params['password'] ?? '',
  8.                 $driverOptions
  9.             );
  10.         } catch (PDOException $exception) {
  1.             $driverOptions[PDO::ATTR_PERSISTENT] = true;
  2.         }
  3.         try {
  4.             $pdo = new PDO(
  5.                 $this->constructPdoDsn($params),
  6.                 $params['user'] ?? '',
  7.                 $params['password'] ?? '',
  8.                 $driverOptions
  9.             );
  10.         } catch (PDOException $exception) {
  1.     }
  2.     public function connect(array $params): DriverConnection
  3.     {
  4.         if (!self::$keepStaticConnections) {
  5.             return $this->underlyingDriver->connect($params);
  6.         }
  7.         $key sha1(json_encode($params));
  8.         if (!isset(self::$connections[$key])) {
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function connect(array $params)
  5.     {
  6.         return $this->wrappedDriver->connect($params);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     public function connect(array $params)
  2.     {
  3.         $this->logger->info('Connecting with parameters {params}', ['params' => $this->maskPassword($params)]);
  4.         return new Connection(
  5.             parent::connect($params),
  6.             $this->logger
  7.         );
  8.     }
  9.     /**
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function connect(array $params)
  5.     {
  6.         return $this->wrappedDriver->connect($params);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     }
  2.     public function connect(array $params): Connection
  3.     {
  4.         return new Connection(
  5.             parent::connect($params),
  6.             $this->debugDataHolder,
  7.             $this->stopwatch,
  8.             $this->connectionName
  9.         );
  10.     }
  1.         if ($this->_conn !== null) {
  2.             return false;
  3.         }
  4.         try {
  5.             $this->_conn $this->_driver->connect($this->params);
  6.         } catch (Driver\Exception $e) {
  7.             throw $this->convertException($e);
  8.         }
  9.         if ($this->autoCommit === false) {
  1.             'https://github.com/doctrine/dbal/issues/4966',
  2.             'Connection::getWrappedConnection() is deprecated.'
  3.                 ' Use Connection::getNativeConnection() to access the native connection.'
  4.         );
  5.         $this->connect();
  6.         assert($this->_conn !== null);
  7.         return $this->_conn;
  8.     }
in vendor/doctrine/dbal/src/Connection.php -> getWrappedConnection (line 1029)
  1.     ): Result {
  2.         if ($qcp !== null) {
  3.             return $this->executeCacheQuery($sql$params$types$qcp);
  4.         }
  5.         $connection $this->getWrappedConnection();
  6.         $logger $this->_config->getSQLLogger();
  7.         if ($logger !== null) {
  8.             $logger->startQuery($sql$params$types);
  9.         }
in vendor/doctrine/dbal/src/Connection.php -> executeQuery (line 565)
  1.      *
  2.      * @throws Exception
  3.      */
  4.     public function fetchOne(string $query, array $params = [], array $types = [])
  5.     {
  6.         return $this->executeQuery($query$params$types)->fetchOne();
  7.     }
  8.     /**
  9.      * Whether an actual connection to the database is established.
  10.      *
  1.      */
  2.     public function getDatabase()
  3.     {
  4.         $platform $this->getDatabasePlatform();
  5.         $query    $platform->getDummySelectSQL($platform->getCurrentDatabaseExpression());
  6.         $database $this->fetchOne($query);
  7.         assert(is_string($database) || $database === null);
  8.         return $database;
  9.     }
  1.             'doctrine/dbal',
  2.             'https://github.com/doctrine/dbal/pull/4821',
  3.             'AbstractSchemaManager::getSchemaSearchPaths() is deprecated.'
  4.         );
  5.         $database $this->_conn->getDatabase();
  6.         if ($database !== null) {
  7.             return [$database];
  8.         }
  1.     public function createSchemaConfig()
  2.     {
  3.         $schemaConfig = new SchemaConfig();
  4.         $schemaConfig->setMaxIdentifierLength($this->_platform->getMaxIdentifierLength());
  5.         $searchPaths $this->getSchemaSearchPaths();
  6.         if (isset($searchPaths[0])) {
  7.             $schemaConfig->setName($searchPaths[0]);
  8.         }
  9.         $params $this->_conn->getParams();
in vendor/symfony/security-acl/Dbal/Schema.php -> createSchemaConfig (line 170)
  1.         $schemaManager method_exists($connection'createSchemaManager')
  2.             ? $connection->createSchemaManager()
  3.             : $connection->getSchemaManager()
  4.         ;
  5.         return $schemaManager->createSchemaConfig();
  6.     }
  7. }
in vendor/symfony/security-acl/Dbal/Schema.php -> createSchemaConfig (line 34)
  1.     /**
  2.      * @param array $options the names for tables
  3.      */
  4.     public function __construct(array $optionsConnection $connection null)
  5.     {
  6.         $schemaConfig $this->createSchemaConfig($connection);
  7.         parent::__construct([], [], $schemaConfig);
  8.         $this->options $options;
  9.         $this->platform $connection $connection->getDatabasePlatform() : null;
  1.         if (isset($this->services['security.acl.dbal.schema'])) {
  2.             return $this->services['security.acl.dbal.schema'];
  3.         }
  4.         return $this->services['security.acl.dbal.schema'] = new \Symfony\Component\Security\Acl\Dbal\Schema(['class_table_name' => 'acl_classes''entry_table_name' => 'acl_entries''oid_table_name' => 'acl_object_identities''oid_ancestors_table_name' => 'acl_object_identity_ancestors''sid_table_name' => 'acl_security_identities'], $a);
  5.     }
  6.     /**
  7.      * Gets the public 'security.acl.provider' shared service.
  8.      *
in var/cache/dev/Container8br3KZ7/App_KernelDevDebugContainer.php -> getSecurity_Acl_Dbal_SchemaService (line 52422)
  1.      */
  2.     protected function getSecurity_Acl_Dbal_SchemaListenerService()
  3.     {
  4.         include_once \dirname(__DIR__4).'/vendor/symfony/acl-bundle/src/EventListener/AclSchemaListener.php';
  5.         $a = ($this->services['security.acl.dbal.schema'] ?? $this->getSecurity_Acl_Dbal_SchemaService());
  6.         if (isset($this->privates['security.acl.dbal.schema_listener'])) {
  7.             return $this->privates['security.acl.dbal.schema_listener'];
  8.         }
in vendor/symfony/dependency-injection/Container.php -> getSecurity_Acl_Dbal_SchemaListenerService (line 431)
  1.         }
  2.         if (null === $method) {
  3.             return false !== $registry $this->{$registry}[$id] ?? null null;
  4.         }
  5.         if (false !== $registry) {
  6.             return $this->{$registry}[$id] ?? $this->{$registry}[$id] = $load $this->load($method) : $this->{$method}();
  7.         }
  8.         if (!$load) {
  9.             return $this->{$method}();
  10.         }
  1.      *
  2.      * @return mixed
  3.      */
  4.     public function get(string $id)
  5.     {
  6.         return isset($this->serviceMap[$id]) ? ($this->factory)(...$this->serviceMap[$id]) : parent::get($id);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
  1.     private function initializeListeners(string $eventName)
  2.     {
  3.         $this->initialized[$eventName] = true;
  4.         foreach ($this->listeners[$eventName] as $hash => $listener) {
  5.             if (\is_string($listener)) {
  6.                 $this->listeners[$eventName][$hash] = $listener $this->container->get($listener);
  7.                 $this->methods[$eventName][$hash] = $this->getMethod($listener$eventName);
  8.             }
  9.         }
  10.     }
  1.             return $this->listeners[$event];
  2.         }
  3.         foreach ($this->listeners as $event => $listeners) {
  4.             if (!isset($this->initialized[$event])) {
  5.                 $this->initializeListeners($event);
  6.             }
  7.         }
  8.         return $this->listeners;
  9.     }
  1.     {
  2.         if (null === $this->listener) {
  3.             $em $this->getEntityManager();
  4.             $evm $em->getEventManager();
  5.             foreach ($evm->getListeners() as $listeners) {
  6.                 foreach ($listeners as $listener) {
  7.                     if ($listener instanceof SoftDeleteableListener) {
  8.                         $this->listener $listener;
  9.                         break 2;
  1.         }
  2.         if (true === ($this->disabled[$targetEntity->rootEntityName] ?? false)) {
  3.             return '';
  4.         }
  5.         $config $this->getListener()->getConfiguration($this->getEntityManager(), $targetEntity->name);
  6.         if (!isset($config['softDeleteable']) || !$config['softDeleteable']) {
  7.             return '';
  8.         }
  1.                 return '';
  2.         }
  3.         $filterClauses = [];
  4.         foreach ($this->em->getFilters()->getEnabledFilters() as $filter) {
  5.             $filterExpr $filter->addFilterConstraint($targetEntity$targetTableAlias);
  6.             if ($filterExpr !== '') {
  7.                 $filterClauses[] = '(' $filterExpr ')';
  8.             }
  9.         }
in vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php -> generateFilterConditionSQL (line 1849)
  1.             $filterClauses = [];
  2.             foreach ($this->rootAliases as $dqlAlias) {
  3.                 $class      $this->getMetadataForDqlAlias($dqlAlias);
  4.                 $tableAlias $this->getSQLTableAlias($class->table['name'], $dqlAlias);
  5.                 $filterExpr $this->generateFilterConditionSQL($class$tableAlias);
  6.                 if ($filterExpr) {
  7.                     $filterClauses[] = $filterExpr;
  8.                 }
  9.             }
  1.         $limit    $this->query->getMaxResults();
  2.         $offset   $this->query->getFirstResult();
  3.         $lockMode $this->query->getHint(Query::HINT_LOCK_MODE) ?: LockMode::NONE;
  4.         $sql      $this->walkSelectClause($AST->selectClause)
  5.             . $this->walkFromClause($AST->fromClause)
  6.             . $this->walkWhereClause($AST->whereClause);
  7.         if ($AST->groupByClause) {
  8.             $sql .= $this->walkGroupByClause($AST->groupByClause);
  9.         }
  1.  */
  2. class SingleSelectExecutor extends AbstractSqlExecutor
  3. {
  4.     public function __construct(SelectStatement $ASTSqlWalker $sqlWalker)
  5.     {
  6.         $this->_sqlStatements $sqlWalker->walkSelectStatement($AST);
  7.     }
  8.     /**
  9.      * {@inheritDoc}
  10.      *
  1.                 return $primaryClass->isInheritanceTypeJoined()
  2.                     ? new Exec\MultiTableUpdateExecutor($AST$this)
  3.                     : new Exec\SingleTableDeleteUpdateExecutor($AST$this);
  4.             default:
  5.                 return new Exec\SingleSelectExecutor($AST$this);
  6.         }
  7.     }
  8.     /**
  9.      * Generates a unique, short SQL table alias.
  1.         $outputWalkerClass $this->customOutputWalker ?: SqlWalker::class;
  2.         $outputWalker      = new $outputWalkerClass($this->query$this->parserResult$this->queryComponents);
  3.         // Assign an SQL executor to the parser result
  4.         $this->parserResult->setSqlExecutor($outputWalker->getExecutor($AST));
  5.         return $this->parserResult;
  6.     }
  7.     /**
  1.         }
  2.         // Cache miss.
  3.         $parser = new Parser($this);
  4.         $this->parserResult $parser->parse();
  5.         $queryCache->save($cacheItem->set($this->parserResult)->expiresAfter($this->queryCacheTTL));
  6.         return $this->parserResult;
  7.     }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     protected function _doExecute()
  5.     {
  6.         $executor $this->parse()->getSqlExecutor();
  7.         if ($this->_queryCacheProfile) {
  8.             $executor->setQueryCacheProfile($this->_queryCacheProfile);
  9.         } else {
  10.             $executor->removeQueryCacheProfile();
  1.             $setCacheEntry = static function ($data) use ($cache$result$cacheItem$realCacheKey): void {
  2.                 $cache->save($cacheItem->set($result + [$realCacheKey => $data]));
  3.             };
  4.         }
  5.         $stmt $this->_doExecute();
  6.         if (is_numeric($stmt)) {
  7.             $setCacheEntry($stmt);
  8.             return $stmt;
in vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php -> executeIgnoreQueryCache (line 1142)
  1.     {
  2.         if ($this->cacheable && $this->isCacheEnabled()) {
  3.             return $this->executeUsingQueryCache($parameters$hydrationMode);
  4.         }
  5.         return $this->executeIgnoreQueryCache($parameters$hydrationMode);
  6.     }
  7.     /**
  8.      * Execute query ignoring second level cache.
  9.      *
  1.      *
  2.      * @return mixed
  3.      */
  4.     public function getResult($hydrationMode self::HYDRATE_OBJECT)
  5.     {
  6.         return $this->execute(null$hydrationMode);
  7.     }
  8.     /**
  9.      * Gets the array of results for the query.
  10.      *
AbstractQuery->getResult() in src/Repository/GoogleTagManagerRepository.php (line 32)
  1.         $qb->where('page_script.type = :type')
  2.             ->setParameter('type'GoogleTagManager::TYPE_SCRIPT);
  3.         /** @var GoogleTagManager[] $result */
  4.         $result $qb->getQuery()
  5.             ->getResult();
  6.         return $result;
  7.     }
  8. }
GoogleTagManagerRepository->getAllScripts() in src/Framework/Security/ContentSecurityPolicy/Computer/PageScriptCSPComputer.php (line 25)
  1.         $usedAlgo reset($supportedAlgos);
  2.         if (false === $usedAlgo) {
  3.             return [];
  4.         }
  5.         $shaSet = [];
  6.         $scripts $this->tagManagerRepository->getAllScripts();
  7.         foreach ($scripts as $script) {
  8.             $htmlScript = (string) $script->getScript();
  9.             if (!== preg_match_all('/<script[^>]*+>/i'$htmlScript)) {
  10.                 continue;
  11.             }
  1.     {
  2.         if (HttpKernelInterface::MAIN_REQUEST !== $event->getRequestType()) {
  3.             return;
  4.         }
  5.         $hashes $this->pageScriptCSPComputer->computeShaSet();
  6.         $this->directiveSet->addShaSet('script-src'$hashes);
  7.     }
  8.     public function calculateNonce(RequestEvent $event): void
  9.     {
  1.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function handleRaw(Request $requestint $type self::MAIN_REQUEST): Response
  3.     {
  4.         // request
  5.         $event = new RequestEvent($this$request$type);
  6.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  7.         if ($event->hasResponse()) {
  8.             return $this->filterResponse($event->getResponse(), $request$type);
  9.         }
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle() in public/index.php (line 31)
  1.     $kernel $kernel->getHttpCache();
  2. }
  3. Request::enableHttpMethodParameterOverride();
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs

Level Channel Message
INFO 00:54:30 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::getContainerExtension()" might add "?ExtensionInterface" as a native return type declaration in the future. Do the same in child class "JMS\I18nRoutingBundle\JMSI18nRoutingBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::getContainerExtension()" might add "?ExtensionInterface" as a native return type declaration in the future. Do the same in child class "Omines\DataTablesBundle\DataTablesBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::getContainerExtension()" might add "?ExtensionInterface" as a native return type declaration in the future. Do the same in child class "HWI\Bundle\OAuthBundle\HWIOAuthBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Doctrine\DBAL\Types\Type::convertToDatabaseValue()" might add "mixed" as a native return type declaration in the future. Do the same in child class "App\Component\Configuration\Doctrine\DBAL\Types\EmailListType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: The "DAMA\DoctrineTestBundle\Doctrine\DBAL\VersionAwarePlatformStaticDriver" class implements "Doctrine\DBAL\VersionAwarePlatformDriver" that is deprecated All drivers will have to be aware of the server version in the next major release.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\UriInterface::getScheme()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\UriInterface::getAuthority()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\UriInterface::getUserInfo()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\UriInterface::getHost()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\UriInterface::getPort()" might add "?int" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\UriInterface::getPath()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\UriInterface::getQuery()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\UriInterface::getFragment()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\UriInterface::withScheme()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\UriInterface::withUserInfo()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\UriInterface::withHost()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\UriInterface::withPort()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\UriInterface::withPath()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\UriInterface::withQuery()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\UriInterface::withFragment()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Uri" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.factory.service" service is deprecated, use "session.storage.factory.native", "session.storage.factory.php_bridge" or "session.storage.factory.mock_file" instead.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.metadata_bag" service is deprecated, create your own "session.storage.factory" instead.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 00:54:30 php Deprecated: Return type of Money\Currencies\ISOCurrencies::getIterator() should either be compatible with IteratorAggregate::getIterator(): Traversable, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice
{
    "exception": {}
}
INFO 00:54:30 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "0f6270"
    },
    "request_uri": "https://mbobanen.staging.03.getnoticed.nl/_profiler/0f6270?panel=exception",
    "method": "GET"
}
INFO 00:54:30 php User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
INFO 00:54:30 doctrine Connecting with parameters {params}
{
    "params": {
        "url": "<redacted>",
        "charset": "utf8mb4",
        "driver": "pdo_mysql",
        "host": "127.0.0.1",
        "port": 3306,
        "user": "mbobanen_db",
        "password": "<redacted>",
        "driverOptions": [],
        "serverVersion": "mariadb-10.4.17",
        "defaultTableOptions": {
            "charset": "utf8mb4",
            "collate": "utf8mb4_unicode_ci"
        },
        "dama.keep_static": true,
        "dama.connection_name": "default",
        "dbname": "mbobanen_db"
    }
}
DEBUG 00:54:30 doctrine Executing query: SELECT DATABASE()
{
    "sql": "SELECT DATABASE()"
}
DEBUG 00:54:30 doctrine Executing statement: SELECT g0_.id AS id_0, g0_.title AS title_1, g0_.location AS location_2, g0_.script AS script_3, g0_.type AS type_4 FROM google_tag_manager g0_ WHERE g0_.type = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT g0_.id AS id_0, g0_.title AS title_1, g0_.location AS location_2, g0_.script AS script_3, g0_.type AS type_4 FROM google_tag_manager g0_ WHERE g0_.type = ?",
    "params": {
        "1": "script"
    },
    "types": {
        "1": 2
    }
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventSubscriber\AdminSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\AdminSubscriber::onRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\MaintenanceListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventSubscriber\CustomTranslationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\CustomTranslationSubscriber::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventSubscriber\RedirectSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\RedirectSubscriber::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::resetDirectiveSet".
{
    "event": "kernel.request",
    "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::resetDirectiveSet"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::calculateNonce".
{
    "event": "kernel.request",
    "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::calculateNonce"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::calculateAddedScripts".
{
    "event": "kernel.request",
    "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::calculateAddedScripts"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "App\EventSubscriber\TranslatableSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "App\\EventSubscriber\\TranslatableSubscriber::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\AnnotationSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\AnnotationSubscriber::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\RoutingMetadataSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\RoutingMetadataSubscriber::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 00:54:30 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 00:54:30 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 00:54:30 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"
}
INFO 00:54:30 php User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventSubscriber\AdminSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\AdminSubscriber::onRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\MaintenanceListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventSubscriber\CustomTranslationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\CustomTranslationSubscriber::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventSubscriber\RedirectSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\RedirectSubscriber::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::resetDirectiveSet".
{
    "event": "kernel.request",
    "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::resetDirectiveSet"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::calculateNonce".
{
    "event": "kernel.request",
    "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::calculateNonce"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::calculateAddedScripts".
{
    "event": "kernel.request",
    "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::calculateAddedScripts"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "App\EventSubscriber\TranslatableSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "App\\EventSubscriber\\TranslatableSubscriber::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\AnnotationSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\AnnotationSubscriber::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\RoutingMetadataSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\RoutingMetadataSubscriber::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 00:54:30 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 00:54:30 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 00:54:30 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"
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\RequestInterface::getRequestTarget()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\RequestInterface::withRequestTarget()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\RequestInterface::getMethod()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\RequestInterface::withMethod()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\RequestInterface::getUri()" might add "UriInterface" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\RequestInterface::withUri()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\MessageInterface::getProtocolVersion()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\MessageInterface::withProtocolVersion()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\MessageInterface::getHeaders()" might add "array" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\MessageInterface::hasHeader()" might add "bool" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\MessageInterface::getHeader()" might add "array" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\MessageInterface::getHeaderLine()" might add "string" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\MessageInterface::withHeader()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\MessageInterface::withAddedHeader()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\MessageInterface::withoutHeader()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\MessageInterface::getBody()" might add "StreamInterface" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 00:54:30 php User Deprecated: Method "Psr\Http\Message\MessageInterface::withBody()" might add "static" as a native return type declaration in the future. Do the same in implementation "GuzzleHttp\Psr7\Request" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "JMS\I18nRoutingBundle\EventListener\CookieSettingListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "JMS\\I18nRoutingBundle\\EventListener\\CookieSettingListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\WebpackEncoreBundle\EventListener\PreLoadAssetsEventListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\PreLoadAssetsEventListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::addCSPHeader".
{
    "event": "kernel.response",
    "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::addCSPHeader"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse"
}
DEBUG 00:54:30 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 00:54:30 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 00:54:30 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleResponse".
{
    "event": "kernel.response",
    "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "App\Component\Analytics\Helper\AdminRequestChecksExistingScriptsSubscriber::onResponse".
{
    "event": "kernel.response",
    "listener": "App\\Component\\Analytics\\Helper\\AdminRequestChecksExistingScriptsSubscriber::onResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onResponse".
{
    "event": "kernel.response",
    "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::addNonceToScripts".
{
    "event": "kernel.response",
    "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::addNonceToScripts"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 00:54:30 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 00:54:30 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "App\Robots\AddDefaultRobotsOnKernelResponse::onResponse".
{
    "event": "kernel.response",
    "listener": "App\\Robots\\AddDefaultRobotsOnKernelResponse::onResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 00:54:30 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 00:54:30 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 00:54:30 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 00:54:30 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 00:54:30 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 00:54:30 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"
}
INFO 00:54:30 php User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventSubscriber\AdminSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\AdminSubscriber::onRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\MaintenanceListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventSubscriber\CustomTranslationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\CustomTranslationSubscriber::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventSubscriber\RedirectSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\RedirectSubscriber::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::resetDirectiveSet".
{
    "event": "kernel.request",
    "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::resetDirectiveSet"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::calculateNonce".
{
    "event": "kernel.request",
    "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::calculateNonce"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::calculateAddedScripts".
{
    "event": "kernel.request",
    "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::calculateAddedScripts"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "App\EventSubscriber\TranslatableSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "App\\EventSubscriber\\TranslatableSubscriber::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\AnnotationSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\AnnotationSubscriber::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\RoutingMetadataSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\RoutingMetadataSubscriber::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 00:54:30 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 00:54:30 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 00:54:30 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 00:54:30 event Notified event "kernel.response" to listener "JMS\I18nRoutingBundle\EventListener\CookieSettingListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "JMS\\I18nRoutingBundle\\EventListener\\CookieSettingListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\WebpackEncoreBundle\EventListener\PreLoadAssetsEventListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\PreLoadAssetsEventListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::addCSPHeader".
{
    "event": "kernel.response",
    "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::addCSPHeader"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse"
}
DEBUG 00:54:30 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 00:54:30 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 00:54:30 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleResponse".
{
    "event": "kernel.response",
    "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "App\Component\Analytics\Helper\AdminRequestChecksExistingScriptsSubscriber::onResponse".
{
    "event": "kernel.response",
    "listener": "App\\Component\\Analytics\\Helper\\AdminRequestChecksExistingScriptsSubscriber::onResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onResponse".
{
    "event": "kernel.response",
    "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::addNonceToScripts".
{
    "event": "kernel.response",
    "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::addNonceToScripts"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 00:54:30 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 00:54:30 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "App\Robots\AddDefaultRobotsOnKernelResponse::onResponse".
{
    "event": "kernel.response",
    "listener": "App\\Robots\\AddDefaultRobotsOnKernelResponse::onResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 00:54:30 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 00:54:30 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 00:54:30 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 00:54:30 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 00:54:30 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 00:54:30 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 00:54:30 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"
}
INFO 00:54:30 php User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent".
{
    "event": "kernel.request",
    "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventSubscriber\AdminSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\AdminSubscriber::onRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\MaintenanceListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onRequest".
{
    "event": "kernel.request",
    "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventSubscriber\CustomTranslationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\CustomTranslationSubscriber::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\EventSubscriber\RedirectSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\RedirectSubscriber::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::resetDirectiveSet".
{
    "event": "kernel.request",
    "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::resetDirectiveSet"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::calculateNonce".
{
    "event": "kernel.request",
    "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::calculateNonce"
}
DEBUG 00:54:30 event Notified event "kernel.request" to listener "App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener::calculateAddedScripts".
{
    "event": "kernel.request",
    "listener": "App\\Framework\\Security\\ContentSecurityPolicy\\EventSubscriber\\ContentSecurityPolicyListener::calculateAddedScripts"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "App\EventSubscriber\TranslatableSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "App\\EventSubscriber\\TranslatableSubscriber::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\AnnotationSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\AnnotationSubscriber::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\RoutingMetadataSubscriber::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\RoutingMetadataSubscriber::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 00:54:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 00:54:30 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 00:54:30 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 00:54:30 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] ConnectionException
Doctrine\DBAL\Exception\ConnectionException:
An exception occurred in the driver: SQLSTATE[HY000] [2002] Connection refused

  at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:103
  at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert()
     (vendor/doctrine/dbal/src/Connection.php:1814)
  at Doctrine\DBAL\Connection->handleDriverException()
     (vendor/doctrine/dbal/src/Connection.php:1757)
  at Doctrine\DBAL\Connection->convertException()
     (vendor/doctrine/dbal/src/Connection.php:343)
  at Doctrine\DBAL\Connection->connect()
     (vendor/doctrine/dbal/src/Connection.php:1531)
  at Doctrine\DBAL\Connection->getWrappedConnection()
     (vendor/doctrine/dbal/src/Connection.php:1029)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/dbal/src/Connection.php:565)
  at Doctrine\DBAL\Connection->fetchOne()
     (vendor/doctrine/dbal/src/Connection.php:237)
  at Doctrine\DBAL\Connection->getDatabase()
     (vendor/doctrine/dbal/src/Schema/AbstractSchemaManager.php:1289)
  at Doctrine\DBAL\Schema\AbstractSchemaManager->getSchemaSearchPaths()
     (vendor/doctrine/dbal/src/Schema/AbstractSchemaManager.php:1246)
  at Doctrine\DBAL\Schema\AbstractSchemaManager->createSchemaConfig()
     (vendor/symfony/security-acl/Dbal/Schema.php:170)
  at Symfony\Component\Security\Acl\Dbal\Schema->createSchemaConfig()
     (vendor/symfony/security-acl/Dbal/Schema.php:34)
  at Symfony\Component\Security\Acl\Dbal\Schema->__construct()
     (var/cache/dev/Container8br3KZ7/App_KernelDevDebugContainer.php:13428)
  at Container8br3KZ7\App_KernelDevDebugContainer->getSecurity_Acl_Dbal_SchemaService()
     (var/cache/dev/Container8br3KZ7/App_KernelDevDebugContainer.php:52422)
  at Container8br3KZ7\App_KernelDevDebugContainer->getSecurity_Acl_Dbal_SchemaListenerService()
     (vendor/symfony/dependency-injection/Container.php:431)
  at Symfony\Component\DependencyInjection\Container->getService()
     (vendor/symfony/dependency-injection/Argument/ServiceLocator.php:42)
  at Symfony\Component\DependencyInjection\Argument\ServiceLocator->get()
     (vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php:187)
  at Symfony\Bridge\Doctrine\ContainerAwareEventManager->initializeListeners()
     (vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php:92)
  at Symfony\Bridge\Doctrine\ContainerAwareEventManager->getListeners()
     (vendor/gedmo/doctrine-extensions/src/SoftDeleteable/Filter/SoftDeleteableFilter.php:118)
  at Gedmo\SoftDeleteable\Filter\SoftDeleteableFilter->getListener()
     (vendor/gedmo/doctrine-extensions/src/SoftDeleteable/Filter/SoftDeleteableFilter.php:60)
  at Gedmo\SoftDeleteable\Filter\SoftDeleteableFilter->addFilterConstraint()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php:519)
  at Doctrine\ORM\Query\SqlWalker->generateFilterConditionSQL()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php:1849)
  at Doctrine\ORM\Query\SqlWalker->walkWhereClause()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php:538)
  at Doctrine\ORM\Query\SqlWalker->walkSelectStatement()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:21)
  at Doctrine\ORM\Query\Exec\SingleSelectExecutor->__construct()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php:288)
  at Doctrine\ORM\Query\SqlWalker->getExecutor()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:449)
  at Doctrine\ORM\Query\Parser->parse()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:274)
  at Doctrine\ORM\Query->parse()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:286)
  at Doctrine\ORM\Query->_doExecute()
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1188)
  at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache()
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1142)
  at Doctrine\ORM\AbstractQuery->execute()
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:878)
  at Doctrine\ORM\AbstractQuery->getResult()
     (src/Repository/GoogleTagManagerRepository.php:32)
  at App\Repository\GoogleTagManagerRepository->getAllScripts()
     (src/Framework/Security/ContentSecurityPolicy/Computer/PageScriptCSPComputer.php:25)
  at App\Framework\Security\ContentSecurityPolicy\Computer\PageScriptCSPComputer->computeShaSet()
     (src/Framework/Security/ContentSecurityPolicy/EventSubscriber/ContentSecurityPolicyListener.php:53)
  at App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener->calculateAddedScripts()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  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:139)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:31)                
[2/3] Exception
Doctrine\DBAL\Driver\PDO\Exception:
SQLSTATE[HY000] [2002] Connection refused

  at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:30
  at Doctrine\DBAL\Driver\PDO\Exception::new()
     (vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php:34)
  at Doctrine\DBAL\Driver\PDO\MySQL\Driver->connect()
     (vendor/dama/doctrine-test-bundle/src/DAMA/DoctrineTestBundle/Doctrine/DBAL/StaticDriver.php:37)
  at DAMA\DoctrineTestBundle\Doctrine\DBAL\StaticDriver->connect()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:26)
  at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect()
     (vendor/doctrine/dbal/src/Logging/Driver.php:34)
  at Doctrine\DBAL\Logging\Driver->connect()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:26)
  at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect()
     (vendor/symfony/doctrine-bridge/Middleware/Debug/Driver.php:41)
  at Symfony\Bridge\Doctrine\Middleware\Debug\Driver->connect()
     (vendor/doctrine/dbal/src/Connection.php:341)
  at Doctrine\DBAL\Connection->connect()
     (vendor/doctrine/dbal/src/Connection.php:1531)
  at Doctrine\DBAL\Connection->getWrappedConnection()
     (vendor/doctrine/dbal/src/Connection.php:1029)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/dbal/src/Connection.php:565)
  at Doctrine\DBAL\Connection->fetchOne()
     (vendor/doctrine/dbal/src/Connection.php:237)
  at Doctrine\DBAL\Connection->getDatabase()
     (vendor/doctrine/dbal/src/Schema/AbstractSchemaManager.php:1289)
  at Doctrine\DBAL\Schema\AbstractSchemaManager->getSchemaSearchPaths()
     (vendor/doctrine/dbal/src/Schema/AbstractSchemaManager.php:1246)
  at Doctrine\DBAL\Schema\AbstractSchemaManager->createSchemaConfig()
     (vendor/symfony/security-acl/Dbal/Schema.php:170)
  at Symfony\Component\Security\Acl\Dbal\Schema->createSchemaConfig()
     (vendor/symfony/security-acl/Dbal/Schema.php:34)
  at Symfony\Component\Security\Acl\Dbal\Schema->__construct()
     (var/cache/dev/Container8br3KZ7/App_KernelDevDebugContainer.php:13428)
  at Container8br3KZ7\App_KernelDevDebugContainer->getSecurity_Acl_Dbal_SchemaService()
     (var/cache/dev/Container8br3KZ7/App_KernelDevDebugContainer.php:52422)
  at Container8br3KZ7\App_KernelDevDebugContainer->getSecurity_Acl_Dbal_SchemaListenerService()
     (vendor/symfony/dependency-injection/Container.php:431)
  at Symfony\Component\DependencyInjection\Container->getService()
     (vendor/symfony/dependency-injection/Argument/ServiceLocator.php:42)
  at Symfony\Component\DependencyInjection\Argument\ServiceLocator->get()
     (vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php:187)
  at Symfony\Bridge\Doctrine\ContainerAwareEventManager->initializeListeners()
     (vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php:92)
  at Symfony\Bridge\Doctrine\ContainerAwareEventManager->getListeners()
     (vendor/gedmo/doctrine-extensions/src/SoftDeleteable/Filter/SoftDeleteableFilter.php:118)
  at Gedmo\SoftDeleteable\Filter\SoftDeleteableFilter->getListener()
     (vendor/gedmo/doctrine-extensions/src/SoftDeleteable/Filter/SoftDeleteableFilter.php:60)
  at Gedmo\SoftDeleteable\Filter\SoftDeleteableFilter->addFilterConstraint()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php:519)
  at Doctrine\ORM\Query\SqlWalker->generateFilterConditionSQL()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php:1849)
  at Doctrine\ORM\Query\SqlWalker->walkWhereClause()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php:538)
  at Doctrine\ORM\Query\SqlWalker->walkSelectStatement()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:21)
  at Doctrine\ORM\Query\Exec\SingleSelectExecutor->__construct()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php:288)
  at Doctrine\ORM\Query\SqlWalker->getExecutor()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:449)
  at Doctrine\ORM\Query\Parser->parse()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:274)
  at Doctrine\ORM\Query->parse()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:286)
  at Doctrine\ORM\Query->_doExecute()
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1188)
  at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache()
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1142)
  at Doctrine\ORM\AbstractQuery->execute()
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:878)
  at Doctrine\ORM\AbstractQuery->getResult()
     (src/Repository/GoogleTagManagerRepository.php:32)
  at App\Repository\GoogleTagManagerRepository->getAllScripts()
     (src/Framework/Security/ContentSecurityPolicy/Computer/PageScriptCSPComputer.php:25)
  at App\Framework\Security\ContentSecurityPolicy\Computer\PageScriptCSPComputer->computeShaSet()
     (src/Framework/Security/ContentSecurityPolicy/EventSubscriber/ContentSecurityPolicyListener.php:53)
  at App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener->calculateAddedScripts()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  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:139)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:31)                
[1/3] PDOException
PDOException:
SQLSTATE[HY000] [2002] Connection refused

  at vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php:28
  at PDO->__construct()
     (vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php:28)
  at Doctrine\DBAL\Driver\PDO\MySQL\Driver->connect()
     (vendor/dama/doctrine-test-bundle/src/DAMA/DoctrineTestBundle/Doctrine/DBAL/StaticDriver.php:37)
  at DAMA\DoctrineTestBundle\Doctrine\DBAL\StaticDriver->connect()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:26)
  at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect()
     (vendor/doctrine/dbal/src/Logging/Driver.php:34)
  at Doctrine\DBAL\Logging\Driver->connect()
     (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:26)
  at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect()
     (vendor/symfony/doctrine-bridge/Middleware/Debug/Driver.php:41)
  at Symfony\Bridge\Doctrine\Middleware\Debug\Driver->connect()
     (vendor/doctrine/dbal/src/Connection.php:341)
  at Doctrine\DBAL\Connection->connect()
     (vendor/doctrine/dbal/src/Connection.php:1531)
  at Doctrine\DBAL\Connection->getWrappedConnection()
     (vendor/doctrine/dbal/src/Connection.php:1029)
  at Doctrine\DBAL\Connection->executeQuery()
     (vendor/doctrine/dbal/src/Connection.php:565)
  at Doctrine\DBAL\Connection->fetchOne()
     (vendor/doctrine/dbal/src/Connection.php:237)
  at Doctrine\DBAL\Connection->getDatabase()
     (vendor/doctrine/dbal/src/Schema/AbstractSchemaManager.php:1289)
  at Doctrine\DBAL\Schema\AbstractSchemaManager->getSchemaSearchPaths()
     (vendor/doctrine/dbal/src/Schema/AbstractSchemaManager.php:1246)
  at Doctrine\DBAL\Schema\AbstractSchemaManager->createSchemaConfig()
     (vendor/symfony/security-acl/Dbal/Schema.php:170)
  at Symfony\Component\Security\Acl\Dbal\Schema->createSchemaConfig()
     (vendor/symfony/security-acl/Dbal/Schema.php:34)
  at Symfony\Component\Security\Acl\Dbal\Schema->__construct()
     (var/cache/dev/Container8br3KZ7/App_KernelDevDebugContainer.php:13428)
  at Container8br3KZ7\App_KernelDevDebugContainer->getSecurity_Acl_Dbal_SchemaService()
     (var/cache/dev/Container8br3KZ7/App_KernelDevDebugContainer.php:52422)
  at Container8br3KZ7\App_KernelDevDebugContainer->getSecurity_Acl_Dbal_SchemaListenerService()
     (vendor/symfony/dependency-injection/Container.php:431)
  at Symfony\Component\DependencyInjection\Container->getService()
     (vendor/symfony/dependency-injection/Argument/ServiceLocator.php:42)
  at Symfony\Component\DependencyInjection\Argument\ServiceLocator->get()
     (vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php:187)
  at Symfony\Bridge\Doctrine\ContainerAwareEventManager->initializeListeners()
     (vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php:92)
  at Symfony\Bridge\Doctrine\ContainerAwareEventManager->getListeners()
     (vendor/gedmo/doctrine-extensions/src/SoftDeleteable/Filter/SoftDeleteableFilter.php:118)
  at Gedmo\SoftDeleteable\Filter\SoftDeleteableFilter->getListener()
     (vendor/gedmo/doctrine-extensions/src/SoftDeleteable/Filter/SoftDeleteableFilter.php:60)
  at Gedmo\SoftDeleteable\Filter\SoftDeleteableFilter->addFilterConstraint()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php:519)
  at Doctrine\ORM\Query\SqlWalker->generateFilterConditionSQL()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php:1849)
  at Doctrine\ORM\Query\SqlWalker->walkWhereClause()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php:538)
  at Doctrine\ORM\Query\SqlWalker->walkSelectStatement()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php:21)
  at Doctrine\ORM\Query\Exec\SingleSelectExecutor->__construct()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php:288)
  at Doctrine\ORM\Query\SqlWalker->getExecutor()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php:449)
  at Doctrine\ORM\Query\Parser->parse()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:274)
  at Doctrine\ORM\Query->parse()
     (vendor/doctrine/orm/lib/Doctrine/ORM/Query.php:286)
  at Doctrine\ORM\Query->_doExecute()
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1188)
  at Doctrine\ORM\AbstractQuery->executeIgnoreQueryCache()
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:1142)
  at Doctrine\ORM\AbstractQuery->execute()
     (vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php:878)
  at Doctrine\ORM\AbstractQuery->getResult()
     (src/Repository/GoogleTagManagerRepository.php:32)
  at App\Repository\GoogleTagManagerRepository->getAllScripts()
     (src/Framework/Security/ContentSecurityPolicy/Computer/PageScriptCSPComputer.php:25)
  at App\Framework\Security\ContentSecurityPolicy\Computer\PageScriptCSPComputer->computeShaSet()
     (src/Framework/Security/ContentSecurityPolicy/EventSubscriber/ContentSecurityPolicyListener.php:53)
  at App\Framework\Security\ContentSecurityPolicy\EventSubscriber\ContentSecurityPolicyListener->calculateAddedScripts()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  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:139)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:31)