Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ ConnectionException
case 1370:
case 1429:
case 2002:
case 2005:
case 2054:
return new ConnectionException($exception, $query);
case 2006:
return new ConnectionLost($exception, $query);
case 1048:
in
vendor/doctrine/dbal/src/Connection.php
->
convert
(line 1814)
): DriverException {
if ($this->exceptionConverter === null) {
$this->exceptionConverter = $this->_driver->getExceptionConverter();
}
$exception = $this->exceptionConverter->convert($driverException, $query);
if ($exception instanceof ConnectionLost) {
$this->close();
}
in
vendor/doctrine/dbal/src/Connection.php
->
handleDriverException
(line 1757)
/**
* @internal
*/
final public function convertException(Driver\Exception $e): DriverException
{
return $this->handleDriverException($e, null);
}
/**
* @param array<int, mixed>|array<string, mixed> $params
* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types
in
vendor/doctrine/dbal/src/Connection.php
->
convertException
(line 343)
}
try {
$this->_conn = $this->_driver->connect($this->params);
} catch (Driver\Exception $e) {
throw $this->convertException($e);
}
if ($this->autoCommit === false) {
$this->beginTransaction();
}
in
vendor/doctrine/dbal/src/Connection.php
->
connect
(line 1531)
'https://github.com/doctrine/dbal/issues/4966',
'Connection::getWrappedConnection() is deprecated.'
. ' Use Connection::getNativeConnection() to access the native connection.'
);
$this->connect();
assert($this->_conn !== null);
return $this->_conn;
}
in
vendor/doctrine/dbal/src/Connection.php
->
getWrappedConnection
(line 1029)
): Result {
if ($qcp !== null) {
return $this->executeCacheQuery($sql, $params, $types, $qcp);
}
$connection = $this->getWrappedConnection();
$logger = $this->_config->getSQLLogger();
if ($logger !== null) {
$logger->startQuery($sql, $params, $types);
}
in
vendor/doctrine/dbal/src/Connection.php
->
executeQuery
(line 565)
*
* @throws Exception
*/
public function fetchOne(string $query, array $params = [], array $types = [])
{
return $this->executeQuery($query, $params, $types)->fetchOne();
}
/**
* Whether an actual connection to the database is established.
*
in
vendor/doctrine/dbal/src/Connection.php
->
fetchOne
(line 237)
*/
public function getDatabase()
{
$platform = $this->getDatabasePlatform();
$query = $platform->getDummySelectSQL($platform->getCurrentDatabaseExpression());
$database = $this->fetchOne($query);
assert(is_string($database) || $database === null);
return $database;
}
in
vendor/doctrine/dbal/src/Schema/AbstractSchemaManager.php
->
getDatabase
(line 1289)
'doctrine/dbal',
'https://github.com/doctrine/dbal/pull/4821',
'AbstractSchemaManager::getSchemaSearchPaths() is deprecated.'
);
$database = $this->_conn->getDatabase();
if ($database !== null) {
return [$database];
}
in
vendor/doctrine/dbal/src/Schema/AbstractSchemaManager.php
->
getSchemaSearchPaths
(line 1246)
public function createSchemaConfig()
{
$schemaConfig = new SchemaConfig();
$schemaConfig->setMaxIdentifierLength($this->_platform->getMaxIdentifierLength());
$searchPaths = $this->getSchemaSearchPaths();
if (isset($searchPaths[0])) {
$schemaConfig->setName($searchPaths[0]);
}
$params = $this->_conn->getParams();
in
vendor/symfony/security-acl/Dbal/Schema.php
->
createSchemaConfig
(line 170)
$schemaManager = method_exists($connection, 'createSchemaManager')
? $connection->createSchemaManager()
: $connection->getSchemaManager()
;
return $schemaManager->createSchemaConfig();
}
}
in
vendor/symfony/security-acl/Dbal/Schema.php
->
createSchemaConfig
(line 34)
/**
* @param array $options the names for tables
*/
public function __construct(array $options, Connection $connection = null)
{
$schemaConfig = $this->createSchemaConfig($connection);
parent::__construct([], [], $schemaConfig);
$this->options = $options;
$this->platform = $connection ? $connection->getDatabasePlatform() : null;
in
var/cache/dev/Container8br3KZ7/App_KernelDevDebugContainer.php
->
__construct
(line 13428)
if (isset($this->services['security.acl.dbal.schema'])) {
return $this->services['security.acl.dbal.schema'];
}
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);
}
/**
* Gets the public 'security.acl.provider' shared service.
*
in
var/cache/dev/Container8br3KZ7/App_KernelDevDebugContainer.php
->
getSecurity_Acl_Dbal_SchemaService
(line 52422)
*/
protected function getSecurity_Acl_Dbal_SchemaListenerService()
{
include_once \dirname(__DIR__, 4).'/vendor/symfony/acl-bundle/src/EventListener/AclSchemaListener.php';
$a = ($this->services['security.acl.dbal.schema'] ?? $this->getSecurity_Acl_Dbal_SchemaService());
if (isset($this->privates['security.acl.dbal.schema_listener'])) {
return $this->privates['security.acl.dbal.schema_listener'];
}
in
vendor/symfony/dependency-injection/Container.php
->
getSecurity_Acl_Dbal_SchemaListenerService
(line 431)
}
if (null === $method) {
return false !== $registry ? $this->{$registry}[$id] ?? null : null;
}
if (false !== $registry) {
return $this->{$registry}[$id] ?? $this->{$registry}[$id] = $load ? $this->load($method) : $this->{$method}();
}
if (!$load) {
return $this->{$method}();
}
in
vendor/symfony/dependency-injection/Argument/ServiceLocator.php
->
getService
(line 42)
*
* @return mixed
*/
public function get(string $id)
{
return isset($this->serviceMap[$id]) ? ($this->factory)(...$this->serviceMap[$id]) : parent::get($id);
}
/**
* {@inheritdoc}
*/
in
vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php
->
get
(line 187)
private function initializeListeners(string $eventName)
{
$this->initialized[$eventName] = true;
foreach ($this->listeners[$eventName] as $hash => $listener) {
if (\is_string($listener)) {
$this->listeners[$eventName][$hash] = $listener = $this->container->get($listener);
$this->methods[$eventName][$hash] = $this->getMethod($listener, $eventName);
}
}
}
in
vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php
->
initializeListeners
(line 92)
return $this->listeners[$event];
}
foreach ($this->listeners as $event => $listeners) {
if (!isset($this->initialized[$event])) {
$this->initializeListeners($event);
}
}
return $this->listeners;
}
in
vendor/gedmo/doctrine-extensions/src/SoftDeleteable/Filter/SoftDeleteableFilter.php
->
getListeners
(line 118)
{
if (null === $this->listener) {
$em = $this->getEntityManager();
$evm = $em->getEventManager();
foreach ($evm->getListeners() as $listeners) {
foreach ($listeners as $listener) {
if ($listener instanceof SoftDeleteableListener) {
$this->listener = $listener;
break 2;
in
vendor/gedmo/doctrine-extensions/src/SoftDeleteable/Filter/SoftDeleteableFilter.php
->
getListener
(line 60)
}
if (true === ($this->disabled[$targetEntity->rootEntityName] ?? false)) {
return '';
}
$config = $this->getListener()->getConfiguration($this->getEntityManager(), $targetEntity->name);
if (!isset($config['softDeleteable']) || !$config['softDeleteable']) {
return '';
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php
->
addFilterConstraint
(line 519)
return '';
}
$filterClauses = [];
foreach ($this->em->getFilters()->getEnabledFilters() as $filter) {
$filterExpr = $filter->addFilterConstraint($targetEntity, $targetTableAlias);
if ($filterExpr !== '') {
$filterClauses[] = '(' . $filterExpr . ')';
}
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php
->
generateFilterConditionSQL
(line 1849)
$filterClauses = [];
foreach ($this->rootAliases as $dqlAlias) {
$class = $this->getMetadataForDqlAlias($dqlAlias);
$tableAlias = $this->getSQLTableAlias($class->table['name'], $dqlAlias);
$filterExpr = $this->generateFilterConditionSQL($class, $tableAlias);
if ($filterExpr) {
$filterClauses[] = $filterExpr;
}
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php
->
walkWhereClause
(line 538)
$limit = $this->query->getMaxResults();
$offset = $this->query->getFirstResult();
$lockMode = $this->query->getHint(Query::HINT_LOCK_MODE) ?: LockMode::NONE;
$sql = $this->walkSelectClause($AST->selectClause)
. $this->walkFromClause($AST->fromClause)
. $this->walkWhereClause($AST->whereClause);
if ($AST->groupByClause) {
$sql .= $this->walkGroupByClause($AST->groupByClause);
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php
->
walkSelectStatement
(line 21)
*/
class SingleSelectExecutor extends AbstractSqlExecutor
{
public function __construct(SelectStatement $AST, SqlWalker $sqlWalker)
{
$this->_sqlStatements = $sqlWalker->walkSelectStatement($AST);
}
/**
* {@inheritDoc}
*
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php
->
__construct
(line 288)
return $primaryClass->isInheritanceTypeJoined()
? new Exec\MultiTableUpdateExecutor($AST, $this)
: new Exec\SingleTableDeleteUpdateExecutor($AST, $this);
default:
return new Exec\SingleSelectExecutor($AST, $this);
}
}
/**
* Generates a unique, short SQL table alias.
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php
->
getExecutor
(line 449)
$outputWalkerClass = $this->customOutputWalker ?: SqlWalker::class;
$outputWalker = new $outputWalkerClass($this->query, $this->parserResult, $this->queryComponents);
// Assign an SQL executor to the parser result
$this->parserResult->setSqlExecutor($outputWalker->getExecutor($AST));
return $this->parserResult;
}
/**
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query.php
->
parse
(line 274)
}
// Cache miss.
$parser = new Parser($this);
$this->parserResult = $parser->parse();
$queryCache->save($cacheItem->set($this->parserResult)->expiresAfter($this->queryCacheTTL));
return $this->parserResult;
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query.php
->
parse
(line 286)
/**
* {@inheritdoc}
*/
protected function _doExecute()
{
$executor = $this->parse()->getSqlExecutor();
if ($this->_queryCacheProfile) {
$executor->setQueryCacheProfile($this->_queryCacheProfile);
} else {
$executor->removeQueryCacheProfile();
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
_doExecute
(line 1188)
$setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {
$cache->save($cacheItem->set($result + [$realCacheKey => $data]));
};
}
$stmt = $this->_doExecute();
if (is_numeric($stmt)) {
$setCacheEntry($stmt);
return $stmt;
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
executeIgnoreQueryCache
(line 1142)
{
if ($this->cacheable && $this->isCacheEnabled()) {
return $this->executeUsingQueryCache($parameters, $hydrationMode);
}
return $this->executeIgnoreQueryCache($parameters, $hydrationMode);
}
/**
* Execute query ignoring second level cache.
*
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
execute
(line 878)
*
* @return mixed
*/
public function getResult($hydrationMode = self::HYDRATE_OBJECT)
{
return $this->execute(null, $hydrationMode);
}
/**
* Gets the array of results for the query.
*
$qb->where('page_script.type = :type')
->setParameter('type', GoogleTagManager::TYPE_SCRIPT);
/** @var GoogleTagManager[] $result */
$result = $qb->getQuery()
->getResult();
return $result;
}
}
GoogleTagManagerRepository->getAllScripts()
in
src/Framework/Security/ContentSecurityPolicy/Computer/PageScriptCSPComputer.php
(line 25)
$usedAlgo = reset($supportedAlgos);
if (false === $usedAlgo) {
return [];
}
$shaSet = [];
$scripts = $this->tagManagerRepository->getAllScripts();
foreach ($scripts as $script) {
$htmlScript = (string) $script->getScript();
if (1 !== preg_match_all('/<script[^>]*+>/i', $htmlScript)) {
continue;
}
PageScriptCSPComputer->computeShaSet()
in
src/Framework/Security/ContentSecurityPolicy/EventSubscriber/ContentSecurityPolicyListener.php
(line 53)
{
if (HttpKernelInterface::MAIN_REQUEST !== $event->getRequestType()) {
return;
}
$hashes = $this->pageScriptCSPComputer->computeShaSet();
$this->directiveSet->addShaSet('script-src', $hashes);
}
public function calculateNonce(RequestEvent $event): void
{
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
calculateAddedScripts
(line 118)
$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
try {
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 230)
foreach ($listeners as $listener) {
if ($stoppable && $event->isPropagationStopped()) {
break;
}
$listener($event, $eventName, $this);
}
}
/**
* Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 59)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
try {
$this->beforeDispatch($eventName, $event);
try {
$e = $this->stopwatch->start($eventName, 'section');
try {
$this->dispatcher->dispatch($event, $eventName);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 139)
*/
private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
{
// request
$event = new RequestEvent($this, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::REQUEST);
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
$kernel = $kernel->getHttpCache();
}
Request::enableHttpMethodParameterOverride();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Doctrine\DBAL\Driver\PDO\ Exception
in
vendor/doctrine/dbal/src/Driver/PDO/Exception.php
(line 30)
} else {
$code = $exception->getCode();
$sqlState = null;
}
return new self($exception->getMessage(), $sqlState, $code, $exception);
}
}
in
vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php
::
new
(line 34)
$params['user'] ?? '',
$params['password'] ?? '',
$driverOptions
);
} catch (PDOException $exception) {
throw Exception::new($exception);
}
return new Connection($pdo);
}
in
vendor/dama/doctrine-test-bundle/src/DAMA/DoctrineTestBundle/Doctrine/DBAL/StaticDriver.php
->
connect
(line 37)
}
public function connect(array $params): DriverConnection
{
if (!self::$keepStaticConnections) {
return $this->underlyingDriver->connect($params);
}
$key = sha1(json_encode($params));
if (!isset(self::$connections[$key])) {
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php
->
connect
(line 26)
/**
* {@inheritdoc}
*/
public function connect(array $params)
{
return $this->wrappedDriver->connect($params);
}
/**
* {@inheritdoc}
*/
in
vendor/doctrine/dbal/src/Logging/Driver.php
->
connect
(line 34)
public function connect(array $params)
{
$this->logger->info('Connecting with parameters {params}', ['params' => $this->maskPassword($params)]);
return new Connection(
parent::connect($params),
$this->logger
);
}
/**
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php
->
connect
(line 26)
/**
* {@inheritdoc}
*/
public function connect(array $params)
{
return $this->wrappedDriver->connect($params);
}
/**
* {@inheritdoc}
*/
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Driver.php
->
connect
(line 41)
}
public function connect(array $params): Connection
{
return new Connection(
parent::connect($params),
$this->debugDataHolder,
$this->stopwatch,
$this->connectionName
);
}
in
vendor/doctrine/dbal/src/Connection.php
->
connect
(line 341)
if ($this->_conn !== null) {
return false;
}
try {
$this->_conn = $this->_driver->connect($this->params);
} catch (Driver\Exception $e) {
throw $this->convertException($e);
}
if ($this->autoCommit === false) {
in
vendor/doctrine/dbal/src/Connection.php
->
connect
(line 1531)
'https://github.com/doctrine/dbal/issues/4966',
'Connection::getWrappedConnection() is deprecated.'
. ' Use Connection::getNativeConnection() to access the native connection.'
);
$this->connect();
assert($this->_conn !== null);
return $this->_conn;
}
in
vendor/doctrine/dbal/src/Connection.php
->
getWrappedConnection
(line 1029)
): Result {
if ($qcp !== null) {
return $this->executeCacheQuery($sql, $params, $types, $qcp);
}
$connection = $this->getWrappedConnection();
$logger = $this->_config->getSQLLogger();
if ($logger !== null) {
$logger->startQuery($sql, $params, $types);
}
in
vendor/doctrine/dbal/src/Connection.php
->
executeQuery
(line 565)
*
* @throws Exception
*/
public function fetchOne(string $query, array $params = [], array $types = [])
{
return $this->executeQuery($query, $params, $types)->fetchOne();
}
/**
* Whether an actual connection to the database is established.
*
in
vendor/doctrine/dbal/src/Connection.php
->
fetchOne
(line 237)
*/
public function getDatabase()
{
$platform = $this->getDatabasePlatform();
$query = $platform->getDummySelectSQL($platform->getCurrentDatabaseExpression());
$database = $this->fetchOne($query);
assert(is_string($database) || $database === null);
return $database;
}
in
vendor/doctrine/dbal/src/Schema/AbstractSchemaManager.php
->
getDatabase
(line 1289)
'doctrine/dbal',
'https://github.com/doctrine/dbal/pull/4821',
'AbstractSchemaManager::getSchemaSearchPaths() is deprecated.'
);
$database = $this->_conn->getDatabase();
if ($database !== null) {
return [$database];
}
in
vendor/doctrine/dbal/src/Schema/AbstractSchemaManager.php
->
getSchemaSearchPaths
(line 1246)
public function createSchemaConfig()
{
$schemaConfig = new SchemaConfig();
$schemaConfig->setMaxIdentifierLength($this->_platform->getMaxIdentifierLength());
$searchPaths = $this->getSchemaSearchPaths();
if (isset($searchPaths[0])) {
$schemaConfig->setName($searchPaths[0]);
}
$params = $this->_conn->getParams();
in
vendor/symfony/security-acl/Dbal/Schema.php
->
createSchemaConfig
(line 170)
$schemaManager = method_exists($connection, 'createSchemaManager')
? $connection->createSchemaManager()
: $connection->getSchemaManager()
;
return $schemaManager->createSchemaConfig();
}
}
in
vendor/symfony/security-acl/Dbal/Schema.php
->
createSchemaConfig
(line 34)
/**
* @param array $options the names for tables
*/
public function __construct(array $options, Connection $connection = null)
{
$schemaConfig = $this->createSchemaConfig($connection);
parent::__construct([], [], $schemaConfig);
$this->options = $options;
$this->platform = $connection ? $connection->getDatabasePlatform() : null;
in
var/cache/dev/Container8br3KZ7/App_KernelDevDebugContainer.php
->
__construct
(line 13428)
if (isset($this->services['security.acl.dbal.schema'])) {
return $this->services['security.acl.dbal.schema'];
}
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);
}
/**
* Gets the public 'security.acl.provider' shared service.
*
in
var/cache/dev/Container8br3KZ7/App_KernelDevDebugContainer.php
->
getSecurity_Acl_Dbal_SchemaService
(line 52422)
*/
protected function getSecurity_Acl_Dbal_SchemaListenerService()
{
include_once \dirname(__DIR__, 4).'/vendor/symfony/acl-bundle/src/EventListener/AclSchemaListener.php';
$a = ($this->services['security.acl.dbal.schema'] ?? $this->getSecurity_Acl_Dbal_SchemaService());
if (isset($this->privates['security.acl.dbal.schema_listener'])) {
return $this->privates['security.acl.dbal.schema_listener'];
}
in
vendor/symfony/dependency-injection/Container.php
->
getSecurity_Acl_Dbal_SchemaListenerService
(line 431)
}
if (null === $method) {
return false !== $registry ? $this->{$registry}[$id] ?? null : null;
}
if (false !== $registry) {
return $this->{$registry}[$id] ?? $this->{$registry}[$id] = $load ? $this->load($method) : $this->{$method}();
}
if (!$load) {
return $this->{$method}();
}
in
vendor/symfony/dependency-injection/Argument/ServiceLocator.php
->
getService
(line 42)
*
* @return mixed
*/
public function get(string $id)
{
return isset($this->serviceMap[$id]) ? ($this->factory)(...$this->serviceMap[$id]) : parent::get($id);
}
/**
* {@inheritdoc}
*/
in
vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php
->
get
(line 187)
private function initializeListeners(string $eventName)
{
$this->initialized[$eventName] = true;
foreach ($this->listeners[$eventName] as $hash => $listener) {
if (\is_string($listener)) {
$this->listeners[$eventName][$hash] = $listener = $this->container->get($listener);
$this->methods[$eventName][$hash] = $this->getMethod($listener, $eventName);
}
}
}
in
vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php
->
initializeListeners
(line 92)
return $this->listeners[$event];
}
foreach ($this->listeners as $event => $listeners) {
if (!isset($this->initialized[$event])) {
$this->initializeListeners($event);
}
}
return $this->listeners;
}
in
vendor/gedmo/doctrine-extensions/src/SoftDeleteable/Filter/SoftDeleteableFilter.php
->
getListeners
(line 118)
{
if (null === $this->listener) {
$em = $this->getEntityManager();
$evm = $em->getEventManager();
foreach ($evm->getListeners() as $listeners) {
foreach ($listeners as $listener) {
if ($listener instanceof SoftDeleteableListener) {
$this->listener = $listener;
break 2;
in
vendor/gedmo/doctrine-extensions/src/SoftDeleteable/Filter/SoftDeleteableFilter.php
->
getListener
(line 60)
}
if (true === ($this->disabled[$targetEntity->rootEntityName] ?? false)) {
return '';
}
$config = $this->getListener()->getConfiguration($this->getEntityManager(), $targetEntity->name);
if (!isset($config['softDeleteable']) || !$config['softDeleteable']) {
return '';
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php
->
addFilterConstraint
(line 519)
return '';
}
$filterClauses = [];
foreach ($this->em->getFilters()->getEnabledFilters() as $filter) {
$filterExpr = $filter->addFilterConstraint($targetEntity, $targetTableAlias);
if ($filterExpr !== '') {
$filterClauses[] = '(' . $filterExpr . ')';
}
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php
->
generateFilterConditionSQL
(line 1849)
$filterClauses = [];
foreach ($this->rootAliases as $dqlAlias) {
$class = $this->getMetadataForDqlAlias($dqlAlias);
$tableAlias = $this->getSQLTableAlias($class->table['name'], $dqlAlias);
$filterExpr = $this->generateFilterConditionSQL($class, $tableAlias);
if ($filterExpr) {
$filterClauses[] = $filterExpr;
}
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php
->
walkWhereClause
(line 538)
$limit = $this->query->getMaxResults();
$offset = $this->query->getFirstResult();
$lockMode = $this->query->getHint(Query::HINT_LOCK_MODE) ?: LockMode::NONE;
$sql = $this->walkSelectClause($AST->selectClause)
. $this->walkFromClause($AST->fromClause)
. $this->walkWhereClause($AST->whereClause);
if ($AST->groupByClause) {
$sql .= $this->walkGroupByClause($AST->groupByClause);
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php
->
walkSelectStatement
(line 21)
*/
class SingleSelectExecutor extends AbstractSqlExecutor
{
public function __construct(SelectStatement $AST, SqlWalker $sqlWalker)
{
$this->_sqlStatements = $sqlWalker->walkSelectStatement($AST);
}
/**
* {@inheritDoc}
*
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php
->
__construct
(line 288)
return $primaryClass->isInheritanceTypeJoined()
? new Exec\MultiTableUpdateExecutor($AST, $this)
: new Exec\SingleTableDeleteUpdateExecutor($AST, $this);
default:
return new Exec\SingleSelectExecutor($AST, $this);
}
}
/**
* Generates a unique, short SQL table alias.
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php
->
getExecutor
(line 449)
$outputWalkerClass = $this->customOutputWalker ?: SqlWalker::class;
$outputWalker = new $outputWalkerClass($this->query, $this->parserResult, $this->queryComponents);
// Assign an SQL executor to the parser result
$this->parserResult->setSqlExecutor($outputWalker->getExecutor($AST));
return $this->parserResult;
}
/**
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query.php
->
parse
(line 274)
}
// Cache miss.
$parser = new Parser($this);
$this->parserResult = $parser->parse();
$queryCache->save($cacheItem->set($this->parserResult)->expiresAfter($this->queryCacheTTL));
return $this->parserResult;
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query.php
->
parse
(line 286)
/**
* {@inheritdoc}
*/
protected function _doExecute()
{
$executor = $this->parse()->getSqlExecutor();
if ($this->_queryCacheProfile) {
$executor->setQueryCacheProfile($this->_queryCacheProfile);
} else {
$executor->removeQueryCacheProfile();
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
_doExecute
(line 1188)
$setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {
$cache->save($cacheItem->set($result + [$realCacheKey => $data]));
};
}
$stmt = $this->_doExecute();
if (is_numeric($stmt)) {
$setCacheEntry($stmt);
return $stmt;
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
executeIgnoreQueryCache
(line 1142)
{
if ($this->cacheable && $this->isCacheEnabled()) {
return $this->executeUsingQueryCache($parameters, $hydrationMode);
}
return $this->executeIgnoreQueryCache($parameters, $hydrationMode);
}
/**
* Execute query ignoring second level cache.
*
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
execute
(line 878)
*
* @return mixed
*/
public function getResult($hydrationMode = self::HYDRATE_OBJECT)
{
return $this->execute(null, $hydrationMode);
}
/**
* Gets the array of results for the query.
*
$qb->where('page_script.type = :type')
->setParameter('type', GoogleTagManager::TYPE_SCRIPT);
/** @var GoogleTagManager[] $result */
$result = $qb->getQuery()
->getResult();
return $result;
}
}
GoogleTagManagerRepository->getAllScripts()
in
src/Framework/Security/ContentSecurityPolicy/Computer/PageScriptCSPComputer.php
(line 25)
$usedAlgo = reset($supportedAlgos);
if (false === $usedAlgo) {
return [];
}
$shaSet = [];
$scripts = $this->tagManagerRepository->getAllScripts();
foreach ($scripts as $script) {
$htmlScript = (string) $script->getScript();
if (1 !== preg_match_all('/<script[^>]*+>/i', $htmlScript)) {
continue;
}
PageScriptCSPComputer->computeShaSet()
in
src/Framework/Security/ContentSecurityPolicy/EventSubscriber/ContentSecurityPolicyListener.php
(line 53)
{
if (HttpKernelInterface::MAIN_REQUEST !== $event->getRequestType()) {
return;
}
$hashes = $this->pageScriptCSPComputer->computeShaSet();
$this->directiveSet->addShaSet('script-src', $hashes);
}
public function calculateNonce(RequestEvent $event): void
{
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
calculateAddedScripts
(line 118)
$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
try {
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 230)
foreach ($listeners as $listener) {
if ($stoppable && $event->isPropagationStopped()) {
break;
}
$listener($event, $eventName, $this);
}
}
/**
* Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 59)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
try {
$this->beforeDispatch($eventName, $event);
try {
$e = $this->stopwatch->start($eventName, 'section');
try {
$this->dispatcher->dispatch($event, $eventName);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 139)
*/
private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
{
// request
$event = new RequestEvent($this, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::REQUEST);
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
$kernel = $kernel->getHttpCache();
}
Request::enableHttpMethodParameterOverride();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
PDOException
in
vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php
(line 28)
$driverOptions[PDO::ATTR_PERSISTENT] = true;
}
try {
$pdo = new PDO(
$this->constructPdoDsn($params),
$params['user'] ?? '',
$params['password'] ?? '',
$driverOptions
);
} catch (PDOException $exception) {
in
vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php
->
__construct
(line 28)
$driverOptions[PDO::ATTR_PERSISTENT] = true;
}
try {
$pdo = new PDO(
$this->constructPdoDsn($params),
$params['user'] ?? '',
$params['password'] ?? '',
$driverOptions
);
} catch (PDOException $exception) {
in
vendor/dama/doctrine-test-bundle/src/DAMA/DoctrineTestBundle/Doctrine/DBAL/StaticDriver.php
->
connect
(line 37)
}
public function connect(array $params): DriverConnection
{
if (!self::$keepStaticConnections) {
return $this->underlyingDriver->connect($params);
}
$key = sha1(json_encode($params));
if (!isset(self::$connections[$key])) {
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php
->
connect
(line 26)
/**
* {@inheritdoc}
*/
public function connect(array $params)
{
return $this->wrappedDriver->connect($params);
}
/**
* {@inheritdoc}
*/
in
vendor/doctrine/dbal/src/Logging/Driver.php
->
connect
(line 34)
public function connect(array $params)
{
$this->logger->info('Connecting with parameters {params}', ['params' => $this->maskPassword($params)]);
return new Connection(
parent::connect($params),
$this->logger
);
}
/**
in
vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php
->
connect
(line 26)
/**
* {@inheritdoc}
*/
public function connect(array $params)
{
return $this->wrappedDriver->connect($params);
}
/**
* {@inheritdoc}
*/
in
vendor/symfony/doctrine-bridge/Middleware/Debug/Driver.php
->
connect
(line 41)
}
public function connect(array $params): Connection
{
return new Connection(
parent::connect($params),
$this->debugDataHolder,
$this->stopwatch,
$this->connectionName
);
}
in
vendor/doctrine/dbal/src/Connection.php
->
connect
(line 341)
if ($this->_conn !== null) {
return false;
}
try {
$this->_conn = $this->_driver->connect($this->params);
} catch (Driver\Exception $e) {
throw $this->convertException($e);
}
if ($this->autoCommit === false) {
in
vendor/doctrine/dbal/src/Connection.php
->
connect
(line 1531)
'https://github.com/doctrine/dbal/issues/4966',
'Connection::getWrappedConnection() is deprecated.'
. ' Use Connection::getNativeConnection() to access the native connection.'
);
$this->connect();
assert($this->_conn !== null);
return $this->_conn;
}
in
vendor/doctrine/dbal/src/Connection.php
->
getWrappedConnection
(line 1029)
): Result {
if ($qcp !== null) {
return $this->executeCacheQuery($sql, $params, $types, $qcp);
}
$connection = $this->getWrappedConnection();
$logger = $this->_config->getSQLLogger();
if ($logger !== null) {
$logger->startQuery($sql, $params, $types);
}
in
vendor/doctrine/dbal/src/Connection.php
->
executeQuery
(line 565)
*
* @throws Exception
*/
public function fetchOne(string $query, array $params = [], array $types = [])
{
return $this->executeQuery($query, $params, $types)->fetchOne();
}
/**
* Whether an actual connection to the database is established.
*
in
vendor/doctrine/dbal/src/Connection.php
->
fetchOne
(line 237)
*/
public function getDatabase()
{
$platform = $this->getDatabasePlatform();
$query = $platform->getDummySelectSQL($platform->getCurrentDatabaseExpression());
$database = $this->fetchOne($query);
assert(is_string($database) || $database === null);
return $database;
}
in
vendor/doctrine/dbal/src/Schema/AbstractSchemaManager.php
->
getDatabase
(line 1289)
'doctrine/dbal',
'https://github.com/doctrine/dbal/pull/4821',
'AbstractSchemaManager::getSchemaSearchPaths() is deprecated.'
);
$database = $this->_conn->getDatabase();
if ($database !== null) {
return [$database];
}
in
vendor/doctrine/dbal/src/Schema/AbstractSchemaManager.php
->
getSchemaSearchPaths
(line 1246)
public function createSchemaConfig()
{
$schemaConfig = new SchemaConfig();
$schemaConfig->setMaxIdentifierLength($this->_platform->getMaxIdentifierLength());
$searchPaths = $this->getSchemaSearchPaths();
if (isset($searchPaths[0])) {
$schemaConfig->setName($searchPaths[0]);
}
$params = $this->_conn->getParams();
in
vendor/symfony/security-acl/Dbal/Schema.php
->
createSchemaConfig
(line 170)
$schemaManager = method_exists($connection, 'createSchemaManager')
? $connection->createSchemaManager()
: $connection->getSchemaManager()
;
return $schemaManager->createSchemaConfig();
}
}
in
vendor/symfony/security-acl/Dbal/Schema.php
->
createSchemaConfig
(line 34)
/**
* @param array $options the names for tables
*/
public function __construct(array $options, Connection $connection = null)
{
$schemaConfig = $this->createSchemaConfig($connection);
parent::__construct([], [], $schemaConfig);
$this->options = $options;
$this->platform = $connection ? $connection->getDatabasePlatform() : null;
in
var/cache/dev/Container8br3KZ7/App_KernelDevDebugContainer.php
->
__construct
(line 13428)
if (isset($this->services['security.acl.dbal.schema'])) {
return $this->services['security.acl.dbal.schema'];
}
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);
}
/**
* Gets the public 'security.acl.provider' shared service.
*
in
var/cache/dev/Container8br3KZ7/App_KernelDevDebugContainer.php
->
getSecurity_Acl_Dbal_SchemaService
(line 52422)
*/
protected function getSecurity_Acl_Dbal_SchemaListenerService()
{
include_once \dirname(__DIR__, 4).'/vendor/symfony/acl-bundle/src/EventListener/AclSchemaListener.php';
$a = ($this->services['security.acl.dbal.schema'] ?? $this->getSecurity_Acl_Dbal_SchemaService());
if (isset($this->privates['security.acl.dbal.schema_listener'])) {
return $this->privates['security.acl.dbal.schema_listener'];
}
in
vendor/symfony/dependency-injection/Container.php
->
getSecurity_Acl_Dbal_SchemaListenerService
(line 431)
}
if (null === $method) {
return false !== $registry ? $this->{$registry}[$id] ?? null : null;
}
if (false !== $registry) {
return $this->{$registry}[$id] ?? $this->{$registry}[$id] = $load ? $this->load($method) : $this->{$method}();
}
if (!$load) {
return $this->{$method}();
}
in
vendor/symfony/dependency-injection/Argument/ServiceLocator.php
->
getService
(line 42)
*
* @return mixed
*/
public function get(string $id)
{
return isset($this->serviceMap[$id]) ? ($this->factory)(...$this->serviceMap[$id]) : parent::get($id);
}
/**
* {@inheritdoc}
*/
in
vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php
->
get
(line 187)
private function initializeListeners(string $eventName)
{
$this->initialized[$eventName] = true;
foreach ($this->listeners[$eventName] as $hash => $listener) {
if (\is_string($listener)) {
$this->listeners[$eventName][$hash] = $listener = $this->container->get($listener);
$this->methods[$eventName][$hash] = $this->getMethod($listener, $eventName);
}
}
}
in
vendor/symfony/doctrine-bridge/ContainerAwareEventManager.php
->
initializeListeners
(line 92)
return $this->listeners[$event];
}
foreach ($this->listeners as $event => $listeners) {
if (!isset($this->initialized[$event])) {
$this->initializeListeners($event);
}
}
return $this->listeners;
}
in
vendor/gedmo/doctrine-extensions/src/SoftDeleteable/Filter/SoftDeleteableFilter.php
->
getListeners
(line 118)
{
if (null === $this->listener) {
$em = $this->getEntityManager();
$evm = $em->getEventManager();
foreach ($evm->getListeners() as $listeners) {
foreach ($listeners as $listener) {
if ($listener instanceof SoftDeleteableListener) {
$this->listener = $listener;
break 2;
in
vendor/gedmo/doctrine-extensions/src/SoftDeleteable/Filter/SoftDeleteableFilter.php
->
getListener
(line 60)
}
if (true === ($this->disabled[$targetEntity->rootEntityName] ?? false)) {
return '';
}
$config = $this->getListener()->getConfiguration($this->getEntityManager(), $targetEntity->name);
if (!isset($config['softDeleteable']) || !$config['softDeleteable']) {
return '';
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php
->
addFilterConstraint
(line 519)
return '';
}
$filterClauses = [];
foreach ($this->em->getFilters()->getEnabledFilters() as $filter) {
$filterExpr = $filter->addFilterConstraint($targetEntity, $targetTableAlias);
if ($filterExpr !== '') {
$filterClauses[] = '(' . $filterExpr . ')';
}
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php
->
generateFilterConditionSQL
(line 1849)
$filterClauses = [];
foreach ($this->rootAliases as $dqlAlias) {
$class = $this->getMetadataForDqlAlias($dqlAlias);
$tableAlias = $this->getSQLTableAlias($class->table['name'], $dqlAlias);
$filterExpr = $this->generateFilterConditionSQL($class, $tableAlias);
if ($filterExpr) {
$filterClauses[] = $filterExpr;
}
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php
->
walkWhereClause
(line 538)
$limit = $this->query->getMaxResults();
$offset = $this->query->getFirstResult();
$lockMode = $this->query->getHint(Query::HINT_LOCK_MODE) ?: LockMode::NONE;
$sql = $this->walkSelectClause($AST->selectClause)
. $this->walkFromClause($AST->fromClause)
. $this->walkWhereClause($AST->whereClause);
if ($AST->groupByClause) {
$sql .= $this->walkGroupByClause($AST->groupByClause);
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php
->
walkSelectStatement
(line 21)
*/
class SingleSelectExecutor extends AbstractSqlExecutor
{
public function __construct(SelectStatement $AST, SqlWalker $sqlWalker)
{
$this->_sqlStatements = $sqlWalker->walkSelectStatement($AST);
}
/**
* {@inheritDoc}
*
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/SqlWalker.php
->
__construct
(line 288)
return $primaryClass->isInheritanceTypeJoined()
? new Exec\MultiTableUpdateExecutor($AST, $this)
: new Exec\SingleTableDeleteUpdateExecutor($AST, $this);
default:
return new Exec\SingleSelectExecutor($AST, $this);
}
}
/**
* Generates a unique, short SQL table alias.
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query/Parser.php
->
getExecutor
(line 449)
$outputWalkerClass = $this->customOutputWalker ?: SqlWalker::class;
$outputWalker = new $outputWalkerClass($this->query, $this->parserResult, $this->queryComponents);
// Assign an SQL executor to the parser result
$this->parserResult->setSqlExecutor($outputWalker->getExecutor($AST));
return $this->parserResult;
}
/**
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query.php
->
parse
(line 274)
}
// Cache miss.
$parser = new Parser($this);
$this->parserResult = $parser->parse();
$queryCache->save($cacheItem->set($this->parserResult)->expiresAfter($this->queryCacheTTL));
return $this->parserResult;
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Query.php
->
parse
(line 286)
/**
* {@inheritdoc}
*/
protected function _doExecute()
{
$executor = $this->parse()->getSqlExecutor();
if ($this->_queryCacheProfile) {
$executor->setQueryCacheProfile($this->_queryCacheProfile);
} else {
$executor->removeQueryCacheProfile();
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
_doExecute
(line 1188)
$setCacheEntry = static function ($data) use ($cache, $result, $cacheItem, $realCacheKey): void {
$cache->save($cacheItem->set($result + [$realCacheKey => $data]));
};
}
$stmt = $this->_doExecute();
if (is_numeric($stmt)) {
$setCacheEntry($stmt);
return $stmt;
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
executeIgnoreQueryCache
(line 1142)
{
if ($this->cacheable && $this->isCacheEnabled()) {
return $this->executeUsingQueryCache($parameters, $hydrationMode);
}
return $this->executeIgnoreQueryCache($parameters, $hydrationMode);
}
/**
* Execute query ignoring second level cache.
*
in
vendor/doctrine/orm/lib/Doctrine/ORM/AbstractQuery.php
->
execute
(line 878)
*
* @return mixed
*/
public function getResult($hydrationMode = self::HYDRATE_OBJECT)
{
return $this->execute(null, $hydrationMode);
}
/**
* Gets the array of results for the query.
*
$qb->where('page_script.type = :type')
->setParameter('type', GoogleTagManager::TYPE_SCRIPT);
/** @var GoogleTagManager[] $result */
$result = $qb->getQuery()
->getResult();
return $result;
}
}
GoogleTagManagerRepository->getAllScripts()
in
src/Framework/Security/ContentSecurityPolicy/Computer/PageScriptCSPComputer.php
(line 25)
$usedAlgo = reset($supportedAlgos);
if (false === $usedAlgo) {
return [];
}
$shaSet = [];
$scripts = $this->tagManagerRepository->getAllScripts();
foreach ($scripts as $script) {
$htmlScript = (string) $script->getScript();
if (1 !== preg_match_all('/<script[^>]*+>/i', $htmlScript)) {
continue;
}
PageScriptCSPComputer->computeShaSet()
in
src/Framework/Security/ContentSecurityPolicy/EventSubscriber/ContentSecurityPolicyListener.php
(line 53)
{
if (HttpKernelInterface::MAIN_REQUEST !== $event->getRequestType()) {
return;
}
$hashes = $this->pageScriptCSPComputer->computeShaSet();
$this->directiveSet->addShaSet('script-src', $hashes);
}
public function calculateNonce(RequestEvent $event): void
{
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
calculateAddedScripts
(line 118)
$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
try {
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 230)
foreach ($listeners as $listener) {
if ($stoppable && $event->isPropagationStopped()) {
break;
}
$listener($event, $eventName, $this);
}
}
/**
* Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 59)
} else {
$listeners = $this->getListeners($eventName);
}
if ($listeners) {
$this->callListeners($listeners, $eventName, $event);
}
return $event;
}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
try {
$this->beforeDispatch($eventName, $event);
try {
$e = $this->stopwatch->start($eventName, 'section');
try {
$this->dispatcher->dispatch($event, $eventName);
} finally {
if ($e->isStarted()) {
$e->stop();
}
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 139)
*/
private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
{
// request
$event = new RequestEvent($this, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::REQUEST);
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
$kernel = $kernel->getHttpCache();
}
Request::enableHttpMethodParameterOverride();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
Logs
Level | Channel | Message |
---|---|---|
INFO 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | php |
User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead. { "exception": {} } |
INFO 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead. { "exception": {} } |
INFO 16:45:33 | 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 16:45:33 | php |
User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead. { "exception": {} } |
INFO 16:45:33 | 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 16:45:33 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "latest" }, "request_uri": "https://mbobanen.staging.03.getnoticed.nl/_profiler/latest?ip=3.132.215.146", "method": "GET" } |
INFO 16:45:33 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. { "exception": {} } |
INFO 16:45:33 | 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 16:45:33 | doctrine |
Executing query: SELECT DATABASE() { "sql": "SELECT DATABASE()" } |
DEBUG 16:45:33 | 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 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent". { "event": "kernel.request", "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent". { "event": "kernel.request", "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\AdminSubscriber::onRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\AdminSubscriber::onRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest". { "event": "kernel.request", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\MaintenanceListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onRequest". { "event": "kernel.request", "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\CustomTranslationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\CustomTranslationSubscriber::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\RedirectSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\RedirectSubscriber::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest". { "event": "kernel.request", "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest". { "event": "kernel.request", "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "App\EventSubscriber\TranslatableSubscriber::onKernelController". { "event": "kernel.controller", "listener": "App\\EventSubscriber\\TranslatableSubscriber::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\AnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\AnnotationSubscriber::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\RoutingMetadataSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\RoutingMetadataSubscriber::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 16:45:33 | 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 16:45:33 | 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 16:45:33 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. { "exception": {} } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent". { "event": "kernel.request", "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent". { "event": "kernel.request", "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\AdminSubscriber::onRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\AdminSubscriber::onRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest". { "event": "kernel.request", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\MaintenanceListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onRequest". { "event": "kernel.request", "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\CustomTranslationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\CustomTranslationSubscriber::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\RedirectSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\RedirectSubscriber::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest". { "event": "kernel.request", "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest". { "event": "kernel.request", "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "App\EventSubscriber\TranslatableSubscriber::onKernelController". { "event": "kernel.controller", "listener": "App\\EventSubscriber\\TranslatableSubscriber::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\AnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\AnnotationSubscriber::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\RoutingMetadataSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\RoutingMetadataSubscriber::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | event |
Notified event "kernel.response" to listener "JMS\I18nRoutingBundle\EventListener\CookieSettingListener::onKernelResponse". { "event": "kernel.response", "listener": "JMS\\I18nRoutingBundle\\EventListener\\CookieSettingListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\WebpackEncoreBundle\EventListener\PreLoadAssetsEventListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\PreLoadAssetsEventListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse" } |
DEBUG 16:45:33 | 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 16:45:33 | event |
Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse". { "event": "kernel.response", "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleResponse". { "event": "kernel.response", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "App\Component\Analytics\Helper\AdminRequestChecksExistingScriptsSubscriber::onResponse". { "event": "kernel.response", "listener": "App\\Component\\Analytics\\Helper\\AdminRequestChecksExistingScriptsSubscriber::onResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onResponse". { "event": "kernel.response", "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onResponse" } |
DEBUG 16:45:33 | 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 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 16:45:33 | 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 16:45:33 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". { "event": "kernel.response", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "App\Robots\AddDefaultRobotsOnKernelResponse::onResponse". { "event": "kernel.response", "listener": "App\\Robots\\AddDefaultRobotsOnKernelResponse::onResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 16:45:33 | 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 16:45:33 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 16:45:33 | 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 16:45:33 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. { "exception": {} } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent". { "event": "kernel.request", "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent". { "event": "kernel.request", "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\AdminSubscriber::onRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\AdminSubscriber::onRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest". { "event": "kernel.request", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\MaintenanceListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onRequest". { "event": "kernel.request", "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\CustomTranslationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\CustomTranslationSubscriber::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\RedirectSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\RedirectSubscriber::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest". { "event": "kernel.request", "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest". { "event": "kernel.request", "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "App\EventSubscriber\TranslatableSubscriber::onKernelController". { "event": "kernel.controller", "listener": "App\\EventSubscriber\\TranslatableSubscriber::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\AnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\AnnotationSubscriber::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\RoutingMetadataSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\RoutingMetadataSubscriber::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 16:45:33 | 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 16:45:33 | 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 16:45:33 | event |
Notified event "kernel.response" to listener "JMS\I18nRoutingBundle\EventListener\CookieSettingListener::onKernelResponse". { "event": "kernel.response", "listener": "JMS\\I18nRoutingBundle\\EventListener\\CookieSettingListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\WebpackEncoreBundle\EventListener\PreLoadAssetsEventListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\PreLoadAssetsEventListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse" } |
DEBUG 16:45:33 | 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 16:45:33 | event |
Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse". { "event": "kernel.response", "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleResponse". { "event": "kernel.response", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "App\Component\Analytics\Helper\AdminRequestChecksExistingScriptsSubscriber::onResponse". { "event": "kernel.response", "listener": "App\\Component\\Analytics\\Helper\\AdminRequestChecksExistingScriptsSubscriber::onResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onResponse". { "event": "kernel.response", "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onResponse" } |
DEBUG 16:45:33 | 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 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 16:45:33 | 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 16:45:33 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". { "event": "kernel.response", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse". { "event": "kernel.response", "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "App\Robots\AddDefaultRobotsOnKernelResponse::onResponse". { "event": "kernel.response", "listener": "App\\Robots\\AddDefaultRobotsOnKernelResponse::onResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 16:45:33 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 16:45:33 | 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 16:45:33 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 16:45:33 | 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 16:45:33 | php |
User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead. { "exception": {} } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Discovery\ConfiguredClientsStrategyListener::onEvent". { "event": "kernel.request", "listener": "Http\\HttplugBundle\\Discovery\\ConfiguredClientsStrategyListener::onEvent" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Http\HttplugBundle\Collector\PluginClientFactoryListener::onEvent". { "event": "kernel.request", "listener": "Http\\HttplugBundle\\Collector\\PluginClientFactoryListener::onEvent" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\RestBundle\\EventListener\\FormatListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\AdminSubscriber::onRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\AdminSubscriber::onRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest". { "event": "kernel.request", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventListener\\MaintenanceListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\Component\Utm\EventSubscriber\UtmRequestEventSubscriber::onRequest". { "event": "kernel.request", "listener": "App\\Component\\Utm\\EventSubscriber\\UtmRequestEventSubscriber::onRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\CustomTranslationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\CustomTranslationSubscriber::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\RedirectSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "App\\EventSubscriber\\RedirectSubscriber::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest". { "event": "kernel.request", "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest". { "event": "kernel.request", "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest" } |
DEBUG 16:45:33 | event |
Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest". { "event": "kernel.request", "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest" } |
DEBUG 16:45:33 | 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 16:45:33 | 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 16:45:33 | 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 16:45:33 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "App\EventSubscriber\TranslatableSubscriber::onKernelController". { "event": "kernel.controller", "listener": "App\\EventSubscriber\\TranslatableSubscriber::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\AnnotationSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\AnnotationSubscriber::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\RoutingMetadataSubscriber::onKernelController". { "event": "kernel.controller", "listener": "Flagception\\Bundle\\FlagceptionBundle\\Listener\\RoutingMetadataSubscriber::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 16:45:33 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 16:45:33 | 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 16:45:33 | 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) |