Exceptions
Exceptions 3
Doctrine\DBAL\Exception\ DriverException
case 1364:
case 1566:
return new NotNullConstraintViolationException($exception, $query);
}
return new DriverException($exception, $query);
}
}
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 405)
}
// If not connected, we need to connect now to determine the platform version.
if ($this->_conn === null) {
try {
$this->connect();
} catch (Exception $originalException) {
if (! isset($this->params['dbname'])) {
throw $originalException;
}
in
vendor/doctrine/dbal/src/Connection.php
->
getDatabasePlatformVersion
(line 367)
*
* @throws Exception If an invalid platform was specified for this connection.
*/
private function detectDatabasePlatform(): AbstractPlatform
{
$version = $this->getDatabasePlatformVersion();
if ($version !== null) {
assert($this->_driver instanceof VersionAwarePlatformDriver);
return $this->_driver->createDatabasePlatformForVersion($version);
in
vendor/doctrine/dbal/src/Connection.php
->
detectDatabasePlatform
(line 284)
* @throws Exception
*/
public function getDatabasePlatform()
{
if ($this->platform === null) {
$this->platform = $this->detectDatabasePlatform();
$this->platform->setEventManager($this->_eventManager);
}
return $this->platform;
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
->
getDatabasePlatform
(line 754)
}
private function getTargetPlatform(): Platforms\AbstractPlatform
{
if (! $this->targetPlatform) {
$this->targetPlatform = $this->em->getConnection()->getDatabasePlatform();
}
return $this->targetPlatform;
}
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
->
getTargetPlatform
(line 550)
*/
private function completeIdGeneratorMapping(ClassMetadataInfo $class): void
{
$idGenType = $class->generatorType;
if ($idGenType === ClassMetadata::GENERATOR_TYPE_AUTO) {
$class->setIdGeneratorType($this->determineIdGeneratorStrategy($this->getTargetPlatform()));
}
// Create & assign an appropriate ID generator instance
switch ($class->generatorType) {
case ClassMetadata::GENERATOR_TYPE_IDENTITY:
in
vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
->
completeIdGeneratorMapping
(line 144)
// However this is only true if the hierarchy of parents contains the root entity,
// if it consists of mapped superclasses these don't necessarily include the id field.
if ($parent && $rootEntityFound) {
$this->inheritIdGeneratorMapping($class, $parent);
} else {
$this->completeIdGeneratorMapping($class);
}
if (! $class->isMappedSuperclass) {
foreach ($class->embeddedClasses as $property => $embeddableClass) {
if (isset($embeddableClass['inherited'])) {
in
vendor/doctrine/doctrine-bundle/Mapping/ClassMetadataFactory.php
->
doLoadMetadata
(line 18)
/**
* {@inheritDoc}
*/
protected function doLoadMetadata($class, $parent, $rootEntityFound, array $nonSuperclassParents): void
{
parent::doLoadMetadata($class, $parent, $rootEntityFound, $nonSuperclassParents);
$customGeneratorDefinition = $class->customGeneratorDefinition;
if (! isset($customGeneratorDefinition['instance'])) {
return;
in
vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php
->
doLoadMetadata
(line 324)
}
$class = $this->newClassMetadataInstance($className);
$this->initializeReflection($class, $reflService);
$this->doLoadMetadata($class, $parent, $rootEntityFound, $visited);
$this->loadedMetadata[$className] = $class;
$parent = $class;
in
vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php
->
loadMetadata
(line 192)
/** @psalm-var CMTemplate $cached */
$this->loadedMetadata[$realClassName] = $cached;
$this->wakeupReflection($cached, $this->getReflectionService());
} else {
$loadedMetadata = $this->loadMetadata($realClassName);
$classNames = array_combine(
array_map([$this, 'getCacheKey'], $loadedMetadata),
$loadedMetadata
);
in
vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php
->
getMetadataFor
(line 313)
*
* {@inheritDoc}
*/
public function getClassMetadata($className)
{
return $this->metadataFactory->getMetadataFor($className);
}
/**
* {@inheritDoc}
*/
in
var/cache/dev/ContainerESxSfTx/EntityManager_9a5be93.php
->
getClassMetadata
(line 94)
public function getClassMetadata($className)
{
$this->initializer7629c && ($this->initializer7629c->__invoke($valueHoldere64f2, $this, 'getClassMetadata', array('className' => $className), $this->initializer7629c) || 1) && $this->valueHoldere64f2 = $valueHoldere64f2;
return $this->valueHoldere64f2->getClassMetadata($className);
}
public function createQuery($dql = '')
{
$this->initializer7629c && ($this->initializer7629c->__invoke($valueHoldere64f2, $this, 'createQuery', array('dql' => $dql), $this->initializer7629c) || 1) && $this->valueHoldere64f2 = $valueHoldere64f2;
in
vendor/doctrine/doctrine-bundle/Repository/ServiceEntityRepository.php
->
getClassMetadata
(line 45)
'Could not find the entity manager for class "%s". Check your Doctrine configuration to make sure it is configured to load this entity’s metadata.',
$entityClass
));
}
parent::__construct($manager, $manager->getClassMetadata($entityClass));
}
}
ServiceEntityRepository->__construct(object(Registry), 'App\\Entity\\Categories')
in
src/Repository/CategoriesRepository.php
(line 19)
*/
class CategoriesRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, Categories::class);
}
// /**
// * @return Categories[] Returns an array of Categories objects
// */
in
var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php
->
__construct
(line 1672)
*
* @return \App\Repository\CategoriesRepository
*/
protected function getCategoriesRepositoryService()
{
return $this->privates['App\\Repository\\CategoriesRepository'] = new \App\Repository\CategoriesRepository(($this->services['doctrine'] ?? $this->getDoctrineService()));
}
/**
* Gets the private 'App\Repository\ProduitRepository' shared autowired service.
*
in
var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php
->
getCategoriesRepositoryService
(line 967)
'Symfony\\Bridge\\Twig\\Extension\\CsrfRuntime' => '?',
'Symfony\\Bridge\\Twig\\Extension\\HttpKernelRuntime' => '?',
'Symfony\\Bridge\\Twig\\Extension\\SerializerRuntime' => '?',
'Symfony\\Component\\Form\\FormRenderer' => '?',
])));
$instance->addGlobal('lescategories', new \App\Services\Categorie\LesCategories(($this->privates['App\\Repository\\CategoriesRepository'] ?? $this->getCategoriesRepositoryService()), ($this->privates['App\\Repository\\ProduitRepository'] ?? $this->getProduitRepositoryService())));
$instance->registerUndefinedFilterCallback([0 => $k, 1 => 'suggestFilter']);
$instance->registerUndefinedFunctionCallback([0 => $k, 1 => 'suggestFunction']);
$instance->registerUndefinedTokenParserCallback([0 => $k, 1 => 'suggestTag']);
(new \Symfony\Bundle\TwigBundle\DependencyInjection\Configurator\EnvironmentConfigurator('F j, Y H:i', '%d days', NULL, 0, '.', ','))->configure($instance);
in
var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php
->
get_Container_Private_TwigService
(line 805)
$instance->add(new \Symfony\Component\HttpKernel\DataCollector\EventDataCollector(($this->services['event_dispatcher'] ?? $this->getEventDispatcherService()), $c));
$instance->add(($this->privates['data_collector.router'] ?? ($this->privates['data_collector.router'] = new \Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector())));
$instance->add($d);
$instance->add(new \Symfony\Component\Translation\DataCollector\TranslationDataCollector(($this->services['translator'] ?? $this->getTranslatorService())));
$instance->add(new \Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector(($this->privates['security.untracked_token_storage'] ?? ($this->privates['security.untracked_token_storage'] = new \Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage())), ($this->privates['security.role_hierarchy'] ?? ($this->privates['security.role_hierarchy'] = new \Symfony\Component\Security\Core\Role\RoleHierarchy([]))), ($this->privates['security.logout_url_generator'] ?? $this->getSecurity_LogoutUrlGeneratorService()), ($this->privates['debug.security.access.decision_manager'] ?? $this->getDebug_Security_Access_DecisionManagerService()), ($this->privates['security.firewall.map'] ?? $this->getSecurity_Firewall_MapService()), ($this->privates['debug.security.firewall'] ?? $this->getDebug_Security_FirewallService()), true));
$instance->add(new \Symfony\Bridge\Twig\DataCollector\TwigDataCollector(($this->privates['twig.profile'] ?? ($this->privates['twig.profile'] = new \Twig\Profiler\Profile())), ($this->services['.container.private.twig'] ?? $this->get_Container_Private_TwigService())));
$instance->add($e);
$instance->add($f);
$instance->add(new \Doctrine\Bundle\MigrationsBundle\Collector\MigrationsCollector(($this->privates['doctrine.migrations.dependency_factory'] ?? $this->getDoctrine_Migrations_DependencyFactoryService()), new \Doctrine\Bundle\MigrationsBundle\Collector\MigrationsFlattener()));
$instance->add(($this->services['data_collector.dump'] ?? $this->getDataCollector_DumpService()));
$instance->add($g);
in
var/cache/dev/ContainerESxSfTx/getWebProfiler_Controller_ProfilerService.php
->
get_Container_Private_ProfilerService
(line 22)
*/
public static function do($container, $lazyLoad = true)
{
include_once \dirname(__DIR__, 4).'/vendor/symfony/web-profiler-bundle/Controller/ProfilerController.php';
return $container->services['web_profiler.controller.profiler'] = new \Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController(($container->services['router'] ?? $container->getRouterService()), ($container->services['.container.private.profiler'] ?? $container->get_Container_Private_ProfilerService()), ($container->services['.container.private.twig'] ?? $container->get_Container_Private_TwigService()), $container->parameters['data_collector.templates'], ($container->privates['web_profiler.csp.handler'] ?? $container->getWebProfiler_Csp_HandlerService()), \dirname(__DIR__, 4));
}
}
in
var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php
::
do
(line 736)
$file .= '.php';
}
$service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;
return class_exists($class, false) ? $class::do($this, $lazyLoad) : $service;
}
protected function createProxy($class, \Closure $factory)
{
class_exists($class, false) || require __DIR__.'/'.$class.'.php';
in
vendor/symfony/dependency-injection/Container.php
->
load
(line 237)
$this->loading[$id] = true;
try {
if (isset($this->fileMap[$id])) {
return /* self::IGNORE_ON_UNINITIALIZED_REFERENCE */ 4 === $invalidBehavior ? null : $this->load($this->fileMap[$id]);
} elseif (isset($this->methodMap[$id])) {
return /* self::IGNORE_ON_UNINITIALIZED_REFERENCE */ 4 === $invalidBehavior ? null : $this->{$this->methodMap[$id]}();
}
} catch (\Exception $e) {
unset($this->services[$id]);
in
vendor/symfony/dependency-injection/Container.php
->
make
(line 219)
*/
public function get(string $id, int $invalidBehavior = /* self::EXCEPTION_ON_INVALID_REFERENCE */ 1)
{
return $this->services[$id]
?? $this->services[$id = $this->aliases[$id] ?? $id]
?? ('service_container' === $id ? $this : ($this->factories[$id] ?? [$this, 'make'])($id, $invalidBehavior));
}
/**
* Creates a service.
*
in
vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php
->
get
(line 53)
protected function instantiateController(string $class)
{
$class = ltrim($class, '\\');
if ($this->container->has($class)) {
return $this->container->get($class);
}
try {
return parent::instantiateController($class);
} catch (\Error $e) {
in
vendor/symfony/framework-bundle/Controller/ControllerResolver.php
->
instantiateController
(line 29)
/**
* {@inheritdoc}
*/
protected function instantiateController(string $class): object
{
$controller = parent::instantiateController($class);
if ($controller instanceof ContainerAwareInterface) {
$controller->setContainer($this->container);
}
if ($controller instanceof AbstractController) {
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
instantiateController
(line 120)
}
[$class, $method] = explode('::', $controller, 2);
try {
$controller = [$this->instantiateController($class), $method];
} catch (\Error|\LogicException $e) {
try {
if ((new \ReflectionMethod($class, $method))->isStatic()) {
return $class.'::'.$method;
}
in
vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php
->
createController
(line 42)
if (1 === substr_count($controller, ':')) {
$controller = str_replace(':', '::', $controller);
trigger_deprecation('symfony/http-kernel', '5.1', 'Referencing controllers with a single colon is deprecated. Use "%s" instead.', $controller);
}
return parent::createController($controller);
}
/**
* {@inheritdoc}
*/
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
createController
(line 86)
if (\function_exists($controller)) {
return $controller;
}
try {
$callable = $this->createController($controller);
} catch (\InvalidArgumentException $e) {
throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable: ', $request->getPathInfo()).$e->getMessage(), 0, $e);
}
if (!\is_callable($callable)) {
in
vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php
->
getController
(line 38)
*/
public function getController(Request $request)
{
$e = $this->stopwatch->start('controller.get_callable');
$ret = $this->resolver->getController($request);
$e->stop();
return $ret;
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
getController
(line 135)
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
// load controller
if (false === $controller = $this->resolver->getController($request)) {
throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.', $request->getPathInfo()));
}
$event = new ControllerEvent($this, $controller, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 74)
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
$this->request = $request;
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
$response->send();
if ($this->kernel instanceof TerminableInterface) {
$this->kernel->terminate($this->request, $response);
}
in
vendor/autoload_runtime.php
->
run
(line 35)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/home/qgrnfysd/public_html/glenou.bj/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
Doctrine\DBAL\Driver\PDO\ Exception
in
vendor/doctrine/dbal/src/Driver/PDO/Exception.php
(line 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/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/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 405)
}
// If not connected, we need to connect now to determine the platform version.
if ($this->_conn === null) {
try {
$this->connect();
} catch (Exception $originalException) {
if (! isset($this->params['dbname'])) {
throw $originalException;
}
in
vendor/doctrine/dbal/src/Connection.php
->
getDatabasePlatformVersion
(line 367)
*
* @throws Exception If an invalid platform was specified for this connection.
*/
private function detectDatabasePlatform(): AbstractPlatform
{
$version = $this->getDatabasePlatformVersion();
if ($version !== null) {
assert($this->_driver instanceof VersionAwarePlatformDriver);
return $this->_driver->createDatabasePlatformForVersion($version);
in
vendor/doctrine/dbal/src/Connection.php
->
detectDatabasePlatform
(line 284)
* @throws Exception
*/
public function getDatabasePlatform()
{
if ($this->platform === null) {
$this->platform = $this->detectDatabasePlatform();
$this->platform->setEventManager($this->_eventManager);
}
return $this->platform;
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
->
getDatabasePlatform
(line 754)
}
private function getTargetPlatform(): Platforms\AbstractPlatform
{
if (! $this->targetPlatform) {
$this->targetPlatform = $this->em->getConnection()->getDatabasePlatform();
}
return $this->targetPlatform;
}
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
->
getTargetPlatform
(line 550)
*/
private function completeIdGeneratorMapping(ClassMetadataInfo $class): void
{
$idGenType = $class->generatorType;
if ($idGenType === ClassMetadata::GENERATOR_TYPE_AUTO) {
$class->setIdGeneratorType($this->determineIdGeneratorStrategy($this->getTargetPlatform()));
}
// Create & assign an appropriate ID generator instance
switch ($class->generatorType) {
case ClassMetadata::GENERATOR_TYPE_IDENTITY:
in
vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
->
completeIdGeneratorMapping
(line 144)
// However this is only true if the hierarchy of parents contains the root entity,
// if it consists of mapped superclasses these don't necessarily include the id field.
if ($parent && $rootEntityFound) {
$this->inheritIdGeneratorMapping($class, $parent);
} else {
$this->completeIdGeneratorMapping($class);
}
if (! $class->isMappedSuperclass) {
foreach ($class->embeddedClasses as $property => $embeddableClass) {
if (isset($embeddableClass['inherited'])) {
in
vendor/doctrine/doctrine-bundle/Mapping/ClassMetadataFactory.php
->
doLoadMetadata
(line 18)
/**
* {@inheritDoc}
*/
protected function doLoadMetadata($class, $parent, $rootEntityFound, array $nonSuperclassParents): void
{
parent::doLoadMetadata($class, $parent, $rootEntityFound, $nonSuperclassParents);
$customGeneratorDefinition = $class->customGeneratorDefinition;
if (! isset($customGeneratorDefinition['instance'])) {
return;
in
vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php
->
doLoadMetadata
(line 324)
}
$class = $this->newClassMetadataInstance($className);
$this->initializeReflection($class, $reflService);
$this->doLoadMetadata($class, $parent, $rootEntityFound, $visited);
$this->loadedMetadata[$className] = $class;
$parent = $class;
in
vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php
->
loadMetadata
(line 192)
/** @psalm-var CMTemplate $cached */
$this->loadedMetadata[$realClassName] = $cached;
$this->wakeupReflection($cached, $this->getReflectionService());
} else {
$loadedMetadata = $this->loadMetadata($realClassName);
$classNames = array_combine(
array_map([$this, 'getCacheKey'], $loadedMetadata),
$loadedMetadata
);
in
vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php
->
getMetadataFor
(line 313)
*
* {@inheritDoc}
*/
public function getClassMetadata($className)
{
return $this->metadataFactory->getMetadataFor($className);
}
/**
* {@inheritDoc}
*/
in
var/cache/dev/ContainerESxSfTx/EntityManager_9a5be93.php
->
getClassMetadata
(line 94)
public function getClassMetadata($className)
{
$this->initializer7629c && ($this->initializer7629c->__invoke($valueHoldere64f2, $this, 'getClassMetadata', array('className' => $className), $this->initializer7629c) || 1) && $this->valueHoldere64f2 = $valueHoldere64f2;
return $this->valueHoldere64f2->getClassMetadata($className);
}
public function createQuery($dql = '')
{
$this->initializer7629c && ($this->initializer7629c->__invoke($valueHoldere64f2, $this, 'createQuery', array('dql' => $dql), $this->initializer7629c) || 1) && $this->valueHoldere64f2 = $valueHoldere64f2;
in
vendor/doctrine/doctrine-bundle/Repository/ServiceEntityRepository.php
->
getClassMetadata
(line 45)
'Could not find the entity manager for class "%s". Check your Doctrine configuration to make sure it is configured to load this entity’s metadata.',
$entityClass
));
}
parent::__construct($manager, $manager->getClassMetadata($entityClass));
}
}
ServiceEntityRepository->__construct(object(Registry), 'App\\Entity\\Categories')
in
src/Repository/CategoriesRepository.php
(line 19)
*/
class CategoriesRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, Categories::class);
}
// /**
// * @return Categories[] Returns an array of Categories objects
// */
in
var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php
->
__construct
(line 1672)
*
* @return \App\Repository\CategoriesRepository
*/
protected function getCategoriesRepositoryService()
{
return $this->privates['App\\Repository\\CategoriesRepository'] = new \App\Repository\CategoriesRepository(($this->services['doctrine'] ?? $this->getDoctrineService()));
}
/**
* Gets the private 'App\Repository\ProduitRepository' shared autowired service.
*
in
var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php
->
getCategoriesRepositoryService
(line 967)
'Symfony\\Bridge\\Twig\\Extension\\CsrfRuntime' => '?',
'Symfony\\Bridge\\Twig\\Extension\\HttpKernelRuntime' => '?',
'Symfony\\Bridge\\Twig\\Extension\\SerializerRuntime' => '?',
'Symfony\\Component\\Form\\FormRenderer' => '?',
])));
$instance->addGlobal('lescategories', new \App\Services\Categorie\LesCategories(($this->privates['App\\Repository\\CategoriesRepository'] ?? $this->getCategoriesRepositoryService()), ($this->privates['App\\Repository\\ProduitRepository'] ?? $this->getProduitRepositoryService())));
$instance->registerUndefinedFilterCallback([0 => $k, 1 => 'suggestFilter']);
$instance->registerUndefinedFunctionCallback([0 => $k, 1 => 'suggestFunction']);
$instance->registerUndefinedTokenParserCallback([0 => $k, 1 => 'suggestTag']);
(new \Symfony\Bundle\TwigBundle\DependencyInjection\Configurator\EnvironmentConfigurator('F j, Y H:i', '%d days', NULL, 0, '.', ','))->configure($instance);
in
var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php
->
get_Container_Private_TwigService
(line 805)
$instance->add(new \Symfony\Component\HttpKernel\DataCollector\EventDataCollector(($this->services['event_dispatcher'] ?? $this->getEventDispatcherService()), $c));
$instance->add(($this->privates['data_collector.router'] ?? ($this->privates['data_collector.router'] = new \Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector())));
$instance->add($d);
$instance->add(new \Symfony\Component\Translation\DataCollector\TranslationDataCollector(($this->services['translator'] ?? $this->getTranslatorService())));
$instance->add(new \Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector(($this->privates['security.untracked_token_storage'] ?? ($this->privates['security.untracked_token_storage'] = new \Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage())), ($this->privates['security.role_hierarchy'] ?? ($this->privates['security.role_hierarchy'] = new \Symfony\Component\Security\Core\Role\RoleHierarchy([]))), ($this->privates['security.logout_url_generator'] ?? $this->getSecurity_LogoutUrlGeneratorService()), ($this->privates['debug.security.access.decision_manager'] ?? $this->getDebug_Security_Access_DecisionManagerService()), ($this->privates['security.firewall.map'] ?? $this->getSecurity_Firewall_MapService()), ($this->privates['debug.security.firewall'] ?? $this->getDebug_Security_FirewallService()), true));
$instance->add(new \Symfony\Bridge\Twig\DataCollector\TwigDataCollector(($this->privates['twig.profile'] ?? ($this->privates['twig.profile'] = new \Twig\Profiler\Profile())), ($this->services['.container.private.twig'] ?? $this->get_Container_Private_TwigService())));
$instance->add($e);
$instance->add($f);
$instance->add(new \Doctrine\Bundle\MigrationsBundle\Collector\MigrationsCollector(($this->privates['doctrine.migrations.dependency_factory'] ?? $this->getDoctrine_Migrations_DependencyFactoryService()), new \Doctrine\Bundle\MigrationsBundle\Collector\MigrationsFlattener()));
$instance->add(($this->services['data_collector.dump'] ?? $this->getDataCollector_DumpService()));
$instance->add($g);
in
var/cache/dev/ContainerESxSfTx/getWebProfiler_Controller_ProfilerService.php
->
get_Container_Private_ProfilerService
(line 22)
*/
public static function do($container, $lazyLoad = true)
{
include_once \dirname(__DIR__, 4).'/vendor/symfony/web-profiler-bundle/Controller/ProfilerController.php';
return $container->services['web_profiler.controller.profiler'] = new \Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController(($container->services['router'] ?? $container->getRouterService()), ($container->services['.container.private.profiler'] ?? $container->get_Container_Private_ProfilerService()), ($container->services['.container.private.twig'] ?? $container->get_Container_Private_TwigService()), $container->parameters['data_collector.templates'], ($container->privates['web_profiler.csp.handler'] ?? $container->getWebProfiler_Csp_HandlerService()), \dirname(__DIR__, 4));
}
}
in
var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php
::
do
(line 736)
$file .= '.php';
}
$service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;
return class_exists($class, false) ? $class::do($this, $lazyLoad) : $service;
}
protected function createProxy($class, \Closure $factory)
{
class_exists($class, false) || require __DIR__.'/'.$class.'.php';
in
vendor/symfony/dependency-injection/Container.php
->
load
(line 237)
$this->loading[$id] = true;
try {
if (isset($this->fileMap[$id])) {
return /* self::IGNORE_ON_UNINITIALIZED_REFERENCE */ 4 === $invalidBehavior ? null : $this->load($this->fileMap[$id]);
} elseif (isset($this->methodMap[$id])) {
return /* self::IGNORE_ON_UNINITIALIZED_REFERENCE */ 4 === $invalidBehavior ? null : $this->{$this->methodMap[$id]}();
}
} catch (\Exception $e) {
unset($this->services[$id]);
in
vendor/symfony/dependency-injection/Container.php
->
make
(line 219)
*/
public function get(string $id, int $invalidBehavior = /* self::EXCEPTION_ON_INVALID_REFERENCE */ 1)
{
return $this->services[$id]
?? $this->services[$id = $this->aliases[$id] ?? $id]
?? ('service_container' === $id ? $this : ($this->factories[$id] ?? [$this, 'make'])($id, $invalidBehavior));
}
/**
* Creates a service.
*
in
vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php
->
get
(line 53)
protected function instantiateController(string $class)
{
$class = ltrim($class, '\\');
if ($this->container->has($class)) {
return $this->container->get($class);
}
try {
return parent::instantiateController($class);
} catch (\Error $e) {
in
vendor/symfony/framework-bundle/Controller/ControllerResolver.php
->
instantiateController
(line 29)
/**
* {@inheritdoc}
*/
protected function instantiateController(string $class): object
{
$controller = parent::instantiateController($class);
if ($controller instanceof ContainerAwareInterface) {
$controller->setContainer($this->container);
}
if ($controller instanceof AbstractController) {
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
instantiateController
(line 120)
}
[$class, $method] = explode('::', $controller, 2);
try {
$controller = [$this->instantiateController($class), $method];
} catch (\Error|\LogicException $e) {
try {
if ((new \ReflectionMethod($class, $method))->isStatic()) {
return $class.'::'.$method;
}
in
vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php
->
createController
(line 42)
if (1 === substr_count($controller, ':')) {
$controller = str_replace(':', '::', $controller);
trigger_deprecation('symfony/http-kernel', '5.1', 'Referencing controllers with a single colon is deprecated. Use "%s" instead.', $controller);
}
return parent::createController($controller);
}
/**
* {@inheritdoc}
*/
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
createController
(line 86)
if (\function_exists($controller)) {
return $controller;
}
try {
$callable = $this->createController($controller);
} catch (\InvalidArgumentException $e) {
throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable: ', $request->getPathInfo()).$e->getMessage(), 0, $e);
}
if (!\is_callable($callable)) {
in
vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php
->
getController
(line 38)
*/
public function getController(Request $request)
{
$e = $this->stopwatch->start('controller.get_callable');
$ret = $this->resolver->getController($request);
$e->stop();
return $ret;
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
getController
(line 135)
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
// load controller
if (false === $controller = $this->resolver->getController($request)) {
throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.', $request->getPathInfo()));
}
$event = new ControllerEvent($this, $controller, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 74)
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
$this->request = $request;
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
$response->send();
if ($this->kernel instanceof TerminableInterface) {
$this->kernel->terminate($this->request, $response);
}
in
vendor/autoload_runtime.php
->
run
(line 35)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/home/qgrnfysd/public_html/glenou.bj/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
PDOException
in
vendor/doctrine/dbal/src/Driver/PDO/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/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/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 405)
}
// If not connected, we need to connect now to determine the platform version.
if ($this->_conn === null) {
try {
$this->connect();
} catch (Exception $originalException) {
if (! isset($this->params['dbname'])) {
throw $originalException;
}
in
vendor/doctrine/dbal/src/Connection.php
->
getDatabasePlatformVersion
(line 367)
*
* @throws Exception If an invalid platform was specified for this connection.
*/
private function detectDatabasePlatform(): AbstractPlatform
{
$version = $this->getDatabasePlatformVersion();
if ($version !== null) {
assert($this->_driver instanceof VersionAwarePlatformDriver);
return $this->_driver->createDatabasePlatformForVersion($version);
in
vendor/doctrine/dbal/src/Connection.php
->
detectDatabasePlatform
(line 284)
* @throws Exception
*/
public function getDatabasePlatform()
{
if ($this->platform === null) {
$this->platform = $this->detectDatabasePlatform();
$this->platform->setEventManager($this->_eventManager);
}
return $this->platform;
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
->
getDatabasePlatform
(line 754)
}
private function getTargetPlatform(): Platforms\AbstractPlatform
{
if (! $this->targetPlatform) {
$this->targetPlatform = $this->em->getConnection()->getDatabasePlatform();
}
return $this->targetPlatform;
}
}
in
vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
->
getTargetPlatform
(line 550)
*/
private function completeIdGeneratorMapping(ClassMetadataInfo $class): void
{
$idGenType = $class->generatorType;
if ($idGenType === ClassMetadata::GENERATOR_TYPE_AUTO) {
$class->setIdGeneratorType($this->determineIdGeneratorStrategy($this->getTargetPlatform()));
}
// Create & assign an appropriate ID generator instance
switch ($class->generatorType) {
case ClassMetadata::GENERATOR_TYPE_IDENTITY:
in
vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
->
completeIdGeneratorMapping
(line 144)
// However this is only true if the hierarchy of parents contains the root entity,
// if it consists of mapped superclasses these don't necessarily include the id field.
if ($parent && $rootEntityFound) {
$this->inheritIdGeneratorMapping($class, $parent);
} else {
$this->completeIdGeneratorMapping($class);
}
if (! $class->isMappedSuperclass) {
foreach ($class->embeddedClasses as $property => $embeddableClass) {
if (isset($embeddableClass['inherited'])) {
in
vendor/doctrine/doctrine-bundle/Mapping/ClassMetadataFactory.php
->
doLoadMetadata
(line 18)
/**
* {@inheritDoc}
*/
protected function doLoadMetadata($class, $parent, $rootEntityFound, array $nonSuperclassParents): void
{
parent::doLoadMetadata($class, $parent, $rootEntityFound, $nonSuperclassParents);
$customGeneratorDefinition = $class->customGeneratorDefinition;
if (! isset($customGeneratorDefinition['instance'])) {
return;
in
vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php
->
doLoadMetadata
(line 324)
}
$class = $this->newClassMetadataInstance($className);
$this->initializeReflection($class, $reflService);
$this->doLoadMetadata($class, $parent, $rootEntityFound, $visited);
$this->loadedMetadata[$className] = $class;
$parent = $class;
in
vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php
->
loadMetadata
(line 192)
/** @psalm-var CMTemplate $cached */
$this->loadedMetadata[$realClassName] = $cached;
$this->wakeupReflection($cached, $this->getReflectionService());
} else {
$loadedMetadata = $this->loadMetadata($realClassName);
$classNames = array_combine(
array_map([$this, 'getCacheKey'], $loadedMetadata),
$loadedMetadata
);
in
vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php
->
getMetadataFor
(line 313)
*
* {@inheritDoc}
*/
public function getClassMetadata($className)
{
return $this->metadataFactory->getMetadataFor($className);
}
/**
* {@inheritDoc}
*/
in
var/cache/dev/ContainerESxSfTx/EntityManager_9a5be93.php
->
getClassMetadata
(line 94)
public function getClassMetadata($className)
{
$this->initializer7629c && ($this->initializer7629c->__invoke($valueHoldere64f2, $this, 'getClassMetadata', array('className' => $className), $this->initializer7629c) || 1) && $this->valueHoldere64f2 = $valueHoldere64f2;
return $this->valueHoldere64f2->getClassMetadata($className);
}
public function createQuery($dql = '')
{
$this->initializer7629c && ($this->initializer7629c->__invoke($valueHoldere64f2, $this, 'createQuery', array('dql' => $dql), $this->initializer7629c) || 1) && $this->valueHoldere64f2 = $valueHoldere64f2;
in
vendor/doctrine/doctrine-bundle/Repository/ServiceEntityRepository.php
->
getClassMetadata
(line 45)
'Could not find the entity manager for class "%s". Check your Doctrine configuration to make sure it is configured to load this entity’s metadata.',
$entityClass
));
}
parent::__construct($manager, $manager->getClassMetadata($entityClass));
}
}
ServiceEntityRepository->__construct(object(Registry), 'App\\Entity\\Categories')
in
src/Repository/CategoriesRepository.php
(line 19)
*/
class CategoriesRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, Categories::class);
}
// /**
// * @return Categories[] Returns an array of Categories objects
// */
in
var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php
->
__construct
(line 1672)
*
* @return \App\Repository\CategoriesRepository
*/
protected function getCategoriesRepositoryService()
{
return $this->privates['App\\Repository\\CategoriesRepository'] = new \App\Repository\CategoriesRepository(($this->services['doctrine'] ?? $this->getDoctrineService()));
}
/**
* Gets the private 'App\Repository\ProduitRepository' shared autowired service.
*
in
var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php
->
getCategoriesRepositoryService
(line 967)
'Symfony\\Bridge\\Twig\\Extension\\CsrfRuntime' => '?',
'Symfony\\Bridge\\Twig\\Extension\\HttpKernelRuntime' => '?',
'Symfony\\Bridge\\Twig\\Extension\\SerializerRuntime' => '?',
'Symfony\\Component\\Form\\FormRenderer' => '?',
])));
$instance->addGlobal('lescategories', new \App\Services\Categorie\LesCategories(($this->privates['App\\Repository\\CategoriesRepository'] ?? $this->getCategoriesRepositoryService()), ($this->privates['App\\Repository\\ProduitRepository'] ?? $this->getProduitRepositoryService())));
$instance->registerUndefinedFilterCallback([0 => $k, 1 => 'suggestFilter']);
$instance->registerUndefinedFunctionCallback([0 => $k, 1 => 'suggestFunction']);
$instance->registerUndefinedTokenParserCallback([0 => $k, 1 => 'suggestTag']);
(new \Symfony\Bundle\TwigBundle\DependencyInjection\Configurator\EnvironmentConfigurator('F j, Y H:i', '%d days', NULL, 0, '.', ','))->configure($instance);
in
var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php
->
get_Container_Private_TwigService
(line 805)
$instance->add(new \Symfony\Component\HttpKernel\DataCollector\EventDataCollector(($this->services['event_dispatcher'] ?? $this->getEventDispatcherService()), $c));
$instance->add(($this->privates['data_collector.router'] ?? ($this->privates['data_collector.router'] = new \Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector())));
$instance->add($d);
$instance->add(new \Symfony\Component\Translation\DataCollector\TranslationDataCollector(($this->services['translator'] ?? $this->getTranslatorService())));
$instance->add(new \Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector(($this->privates['security.untracked_token_storage'] ?? ($this->privates['security.untracked_token_storage'] = new \Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage())), ($this->privates['security.role_hierarchy'] ?? ($this->privates['security.role_hierarchy'] = new \Symfony\Component\Security\Core\Role\RoleHierarchy([]))), ($this->privates['security.logout_url_generator'] ?? $this->getSecurity_LogoutUrlGeneratorService()), ($this->privates['debug.security.access.decision_manager'] ?? $this->getDebug_Security_Access_DecisionManagerService()), ($this->privates['security.firewall.map'] ?? $this->getSecurity_Firewall_MapService()), ($this->privates['debug.security.firewall'] ?? $this->getDebug_Security_FirewallService()), true));
$instance->add(new \Symfony\Bridge\Twig\DataCollector\TwigDataCollector(($this->privates['twig.profile'] ?? ($this->privates['twig.profile'] = new \Twig\Profiler\Profile())), ($this->services['.container.private.twig'] ?? $this->get_Container_Private_TwigService())));
$instance->add($e);
$instance->add($f);
$instance->add(new \Doctrine\Bundle\MigrationsBundle\Collector\MigrationsCollector(($this->privates['doctrine.migrations.dependency_factory'] ?? $this->getDoctrine_Migrations_DependencyFactoryService()), new \Doctrine\Bundle\MigrationsBundle\Collector\MigrationsFlattener()));
$instance->add(($this->services['data_collector.dump'] ?? $this->getDataCollector_DumpService()));
$instance->add($g);
in
var/cache/dev/ContainerESxSfTx/getWebProfiler_Controller_ProfilerService.php
->
get_Container_Private_ProfilerService
(line 22)
*/
public static function do($container, $lazyLoad = true)
{
include_once \dirname(__DIR__, 4).'/vendor/symfony/web-profiler-bundle/Controller/ProfilerController.php';
return $container->services['web_profiler.controller.profiler'] = new \Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController(($container->services['router'] ?? $container->getRouterService()), ($container->services['.container.private.profiler'] ?? $container->get_Container_Private_ProfilerService()), ($container->services['.container.private.twig'] ?? $container->get_Container_Private_TwigService()), $container->parameters['data_collector.templates'], ($container->privates['web_profiler.csp.handler'] ?? $container->getWebProfiler_Csp_HandlerService()), \dirname(__DIR__, 4));
}
}
in
var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php
::
do
(line 736)
$file .= '.php';
}
$service = require $this->containerDir.\DIRECTORY_SEPARATOR.$file;
return class_exists($class, false) ? $class::do($this, $lazyLoad) : $service;
}
protected function createProxy($class, \Closure $factory)
{
class_exists($class, false) || require __DIR__.'/'.$class.'.php';
in
vendor/symfony/dependency-injection/Container.php
->
load
(line 237)
$this->loading[$id] = true;
try {
if (isset($this->fileMap[$id])) {
return /* self::IGNORE_ON_UNINITIALIZED_REFERENCE */ 4 === $invalidBehavior ? null : $this->load($this->fileMap[$id]);
} elseif (isset($this->methodMap[$id])) {
return /* self::IGNORE_ON_UNINITIALIZED_REFERENCE */ 4 === $invalidBehavior ? null : $this->{$this->methodMap[$id]}();
}
} catch (\Exception $e) {
unset($this->services[$id]);
in
vendor/symfony/dependency-injection/Container.php
->
make
(line 219)
*/
public function get(string $id, int $invalidBehavior = /* self::EXCEPTION_ON_INVALID_REFERENCE */ 1)
{
return $this->services[$id]
?? $this->services[$id = $this->aliases[$id] ?? $id]
?? ('service_container' === $id ? $this : ($this->factories[$id] ?? [$this, 'make'])($id, $invalidBehavior));
}
/**
* Creates a service.
*
in
vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php
->
get
(line 53)
protected function instantiateController(string $class)
{
$class = ltrim($class, '\\');
if ($this->container->has($class)) {
return $this->container->get($class);
}
try {
return parent::instantiateController($class);
} catch (\Error $e) {
in
vendor/symfony/framework-bundle/Controller/ControllerResolver.php
->
instantiateController
(line 29)
/**
* {@inheritdoc}
*/
protected function instantiateController(string $class): object
{
$controller = parent::instantiateController($class);
if ($controller instanceof ContainerAwareInterface) {
$controller->setContainer($this->container);
}
if ($controller instanceof AbstractController) {
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
instantiateController
(line 120)
}
[$class, $method] = explode('::', $controller, 2);
try {
$controller = [$this->instantiateController($class), $method];
} catch (\Error|\LogicException $e) {
try {
if ((new \ReflectionMethod($class, $method))->isStatic()) {
return $class.'::'.$method;
}
in
vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php
->
createController
(line 42)
if (1 === substr_count($controller, ':')) {
$controller = str_replace(':', '::', $controller);
trigger_deprecation('symfony/http-kernel', '5.1', 'Referencing controllers with a single colon is deprecated. Use "%s" instead.', $controller);
}
return parent::createController($controller);
}
/**
* {@inheritdoc}
*/
in
vendor/symfony/http-kernel/Controller/ControllerResolver.php
->
createController
(line 86)
if (\function_exists($controller)) {
return $controller;
}
try {
$callable = $this->createController($controller);
} catch (\InvalidArgumentException $e) {
throw new \InvalidArgumentException(sprintf('The controller for URI "%s" is not callable: ', $request->getPathInfo()).$e->getMessage(), 0, $e);
}
if (!\is_callable($callable)) {
in
vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php
->
getController
(line 38)
*/
public function getController(Request $request)
{
$e = $this->stopwatch->start('controller.get_callable');
$ret = $this->resolver->getController($request);
$e->stop();
return $ret;
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
getController
(line 135)
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
// load controller
if (false === $controller = $this->resolver->getController($request)) {
throw new NotFoundHttpException(sprintf('Unable to find the controller for path "%s". The route is wrongly configured.', $request->getPathInfo()));
}
$event = new ControllerEvent($this, $controller, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 74)
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
$this->request = $request;
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
$response->send();
if ($this->kernel instanceof TerminableInterface) {
$this->kernel->terminate($this->request, $response);
}
in
vendor/autoload_runtime.php
->
run
(line 35)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/home/qgrnfysd/public_html/glenou.bj/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
Logs
Level | Channel | Message |
---|---|---|
INFO 05:36:03 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "e1a2db" }, "request_uri": "http://glenou.jinukun.bj/_profiler/e1a2db", "method": "GET" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\QueryParameterValidateListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\QueryParameterValidateListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurity". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurity" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\DeserializeListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\DeserializeListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurityPostDenormalize". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurityPostDenormalize" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Bridge\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest" } |
INFO 05:36:03 | doctrine |
Connecting with parameters {params} { "params": { "url": "<redacted>", "driver": "pdo_mysql", "host": "localhost", "port": null, "user": "qgrnfysd_jinukun", "password": "<redacted>", "driverOptions": [], "defaultTableOptions": { "collation": "utf8mb4_unicode_ci" }, "dbname": "qgrnfysd_glenou", "charset": "utf8mb4" } } |
DEBUG 05:36:03 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 05:36:03 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 05:36:03 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 05:36:03 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 05:36:03 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 05:36:03 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 05:36:03 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 05:36:03 | 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 05:36:03 | 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 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\QueryParameterValidateListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\QueryParameterValidateListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurity". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurity" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\DeserializeListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\DeserializeListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurityPostDenormalize". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurityPostDenormalize" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Bridge\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest" } |
DEBUG 05:36:03 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 05:36:03 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 05:36:03 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 05:36:03 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 05:36:03 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 05:36:03 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 05:36:03 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 05:36:03 | 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 05:36:03 | 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 05:36:03 | deprecation |
User Deprecated: Method "Psr\Link\LinkInterface::getHref()" might add "string" as a native return type declaration in the future. Do the same in implementation "Fig\Link\Link" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:36:04 | deprecation |
User Deprecated: Method "Psr\Link\LinkInterface::isTemplated()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Fig\Link\Link" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:36:04 | deprecation |
User Deprecated: Method "Psr\Link\LinkInterface::getRels()" might add "array" as a native return type declaration in the future. Do the same in implementation "Fig\Link\Link" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:36:04 | deprecation |
User Deprecated: Method "Psr\Link\LinkInterface::getAttributes()" might add "array" as a native return type declaration in the future. Do the same in implementation "Fig\Link\Link" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:36:04 | deprecation |
User Deprecated: Method "Psr\Link\EvolvableLinkProviderInterface::withLink()" might add "static" as a native return type declaration in the future. Do the same in implementation "Fig\Link\GenericLinkProvider" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:36:04 | deprecation |
User Deprecated: Method "Psr\Link\EvolvableLinkProviderInterface::withoutLink()" might add "static" as a native return type declaration in the future. Do the same in implementation "Fig\Link\GenericLinkProvider" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:36:04 | deprecation |
User Deprecated: Method "Psr\Link\LinkProviderInterface::getLinks()" might add "iterable" as a native return type declaration in the future. Do the same in implementation "Fig\Link\GenericLinkProvider" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 05:36:04 | deprecation |
User Deprecated: Method "Psr\Link\LinkProviderInterface::getLinksByRel()" might add "iterable" as a native return type declaration in the future. Do the same in implementation "Fig\Link\GenericLinkProvider" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
DEBUG 05:36:04 | 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 05:36:04 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "ApiPlatform\Core\Hydra\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "ApiPlatform\\Core\\Hydra\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 05:36:04 | 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 05:36:04 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". { "event": "kernel.response", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "ApiPlatform\Core\HttpCache\EventListener\AddHeadersListener::onKernelResponse". { "event": "kernel.response", "listener": "ApiPlatform\\Core\\HttpCache\\EventListener\\AddHeadersListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 05:36:04 | 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 05:36:04 | 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 05:36:04 | 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 05:36:04 | 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 05:36:04 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\QueryParameterValidateListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\QueryParameterValidateListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurity". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurity" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\DeserializeListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\DeserializeListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurityPostDenormalize". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurityPostDenormalize" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Bridge\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 05:36:04 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 05:36:04 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 05:36:04 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 05:36:04 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 05:36:04 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 05:36:04 | 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 05:36:04 | 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 05:36:04 | 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 05:36:04 | 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 05:36:04 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "ApiPlatform\Core\Hydra\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "ApiPlatform\\Core\\Hydra\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 05:36:04 | 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 05:36:04 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". { "event": "kernel.response", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "ApiPlatform\Core\HttpCache\EventListener\AddHeadersListener::onKernelResponse". { "event": "kernel.response", "listener": "ApiPlatform\\Core\\HttpCache\\EventListener\\AddHeadersListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 05:36:04 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 05:36:04 | 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 05:36:04 | 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 05:36:04 | 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 05:36:04 | 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 05:36:04 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\QueryParameterValidateListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\QueryParameterValidateListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\AddFormatListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\AddFormatListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\ReadListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\ReadListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurity". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurity" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\EventListener\DeserializeListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\EventListener\\DeserializeListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Security\EventListener\DenyAccessListener::onSecurityPostDenormalize". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\Security\\EventListener\\DenyAccessListener::onSecurityPostDenormalize" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.request" to listener "ApiPlatform\Core\Bridge\Symfony\Bundle\EventListener\SwaggerUiListener::onKernelRequest". { "event": "kernel.request", "listener": "ApiPlatform\\Core\\Bridge\\Symfony\\Bundle\\EventListener\\SwaggerUiListener::onKernelRequest" } |
DEBUG 05:36:04 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 05:36:04 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 05:36:04 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 05:36:04 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 05:36:04 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 05:36:04 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 05:36:04 | 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 05:36:04 | 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 05:36:04 | 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]
DriverException
|
---|
Doctrine\DBAL\Exception\DriverException: An exception occurred in the driver: SQLSTATE[HY000] [1040] Too many connections at vendor/doctrine/dbal/src/Driver/API/MySQL/ExceptionConverter.php:119 at Doctrine\DBAL\Driver\API\MySQL\ExceptionConverter->convert(object(Exception), null) (vendor/doctrine/dbal/src/Connection.php:1814) at Doctrine\DBAL\Connection->handleDriverException(object(Exception), null) (vendor/doctrine/dbal/src/Connection.php:1757) at Doctrine\DBAL\Connection->convertException(object(Exception)) (vendor/doctrine/dbal/src/Connection.php:343) at Doctrine\DBAL\Connection->connect() (vendor/doctrine/dbal/src/Connection.php:405) at Doctrine\DBAL\Connection->getDatabasePlatformVersion() (vendor/doctrine/dbal/src/Connection.php:367) at Doctrine\DBAL\Connection->detectDatabasePlatform() (vendor/doctrine/dbal/src/Connection.php:284) at Doctrine\DBAL\Connection->getDatabasePlatform() (vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php:754) at Doctrine\ORM\Mapping\ClassMetadataFactory->getTargetPlatform() (vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php:550) at Doctrine\ORM\Mapping\ClassMetadataFactory->completeIdGeneratorMapping(object(ClassMetadata)) (vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php:144) at Doctrine\ORM\Mapping\ClassMetadataFactory->doLoadMetadata(object(ClassMetadata), null, false, array()) (vendor/doctrine/doctrine-bundle/Mapping/ClassMetadataFactory.php:18) at Doctrine\Bundle\DoctrineBundle\Mapping\ClassMetadataFactory->doLoadMetadata(object(ClassMetadata), null, false, array()) (vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php:324) at Doctrine\Persistence\Mapping\AbstractClassMetadataFactory->loadMetadata('App\\Entity\\Categories') (vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php:192) at Doctrine\Persistence\Mapping\AbstractClassMetadataFactory->getMetadataFor('App\\Entity\\Categories') (vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php:313) at Doctrine\ORM\EntityManager->getClassMetadata('App\\Entity\\Categories') (var/cache/dev/ContainerESxSfTx/EntityManager_9a5be93.php:94) at ContainerESxSfTx\EntityManager_9a5be93->getClassMetadata('App\\Entity\\Categories') (vendor/doctrine/doctrine-bundle/Repository/ServiceEntityRepository.php:45) at Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository->__construct(object(Registry), 'App\\Entity\\Categories') (src/Repository/CategoriesRepository.php:19) at App\Repository\CategoriesRepository->__construct(object(Registry)) (var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php:1672) at ContainerESxSfTx\App_KernelDevDebugContainer->getCategoriesRepositoryService() (var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php:967) at ContainerESxSfTx\App_KernelDevDebugContainer->get_Container_Private_TwigService() (var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php:805) at ContainerESxSfTx\App_KernelDevDebugContainer->get_Container_Private_ProfilerService() (var/cache/dev/ContainerESxSfTx/getWebProfiler_Controller_ProfilerService.php:22) at ContainerESxSfTx\getWebProfiler_Controller_ProfilerService::do(object(App_KernelDevDebugContainer), true) (var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php:736) at ContainerESxSfTx\App_KernelDevDebugContainer->load('getWebProfiler_Controller_ProfilerService.php') (vendor/symfony/dependency-injection/Container.php:237) at Symfony\Component\DependencyInjection\Container->make('web_profiler.controller.profiler', 1) (vendor/symfony/dependency-injection/Container.php:219) at Symfony\Component\DependencyInjection\Container->get('web_profiler.controller.profiler') (vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php:53) at Symfony\Component\HttpKernel\Controller\ContainerControllerResolver->instantiateController('web_profiler.controller.profiler') (vendor/symfony/framework-bundle/Controller/ControllerResolver.php:29) at Symfony\Bundle\FrameworkBundle\Controller\ControllerResolver->instantiateController('web_profiler.controller.profiler') (vendor/symfony/http-kernel/Controller/ControllerResolver.php:120) at Symfony\Component\HttpKernel\Controller\ControllerResolver->createController('web_profiler.controller.profiler::panelAction') (vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php:42) at Symfony\Component\HttpKernel\Controller\ContainerControllerResolver->createController('web_profiler.controller.profiler::panelAction') (vendor/symfony/http-kernel/Controller/ControllerResolver.php:86) at Symfony\Component\HttpKernel\Controller\ControllerResolver->getController(object(Request)) (vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php:38) at Symfony\Component\HttpKernel\Controller\TraceableControllerResolver->getController(object(Request)) (vendor/symfony/http-kernel/HttpKernel.php:135) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:74) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:35) at require_once('/home/qgrnfysd/public_html/glenou.bj/vendor/autoload_runtime.php') (public/index.php:5) |
[2/3]
Exception
|
---|
Doctrine\DBAL\Driver\PDO\Exception: SQLSTATE[HY000] [1040] Too many connections at vendor/doctrine/dbal/src/Driver/PDO/Exception.php:30 at Doctrine\DBAL\Driver\PDO\Exception::new(object(PDOException)) (vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php:34) at Doctrine\DBAL\Driver\PDO\MySQL\Driver->connect(array('url' => 'mysql://qgrnfysd_jinukun:ka4!&O65Pi0K@localhost/qgrnfysd_glenou', 'driver' => 'pdo_mysql', 'host' => 'localhost', 'port' => null, 'user' => 'qgrnfysd_jinukun', 'password' => 'ka4!&O65Pi0K', 'driverOptions' => array(), 'defaultTableOptions' => array('collation' => 'utf8mb4_unicode_ci'), 'dbname' => 'qgrnfysd_glenou', 'charset' => 'utf8mb4')) (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:26) at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect(array('url' => 'mysql://qgrnfysd_jinukun:ka4!&O65Pi0K@localhost/qgrnfysd_glenou', 'driver' => 'pdo_mysql', 'host' => 'localhost', 'port' => null, 'user' => 'qgrnfysd_jinukun', 'password' => 'ka4!&O65Pi0K', 'driverOptions' => array(), 'defaultTableOptions' => array('collation' => 'utf8mb4_unicode_ci'), 'dbname' => 'qgrnfysd_glenou', 'charset' => 'utf8mb4')) (vendor/doctrine/dbal/src/Logging/Driver.php:34) at Doctrine\DBAL\Logging\Driver->connect(array('url' => 'mysql://qgrnfysd_jinukun:ka4!&O65Pi0K@localhost/qgrnfysd_glenou', 'driver' => 'pdo_mysql', 'host' => 'localhost', 'port' => null, 'user' => 'qgrnfysd_jinukun', 'password' => 'ka4!&O65Pi0K', 'driverOptions' => array(), 'defaultTableOptions' => array('collation' => 'utf8mb4_unicode_ci'), 'dbname' => 'qgrnfysd_glenou', 'charset' => 'utf8mb4')) (vendor/doctrine/dbal/src/Connection.php:341) at Doctrine\DBAL\Connection->connect() (vendor/doctrine/dbal/src/Connection.php:405) at Doctrine\DBAL\Connection->getDatabasePlatformVersion() (vendor/doctrine/dbal/src/Connection.php:367) at Doctrine\DBAL\Connection->detectDatabasePlatform() (vendor/doctrine/dbal/src/Connection.php:284) at Doctrine\DBAL\Connection->getDatabasePlatform() (vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php:754) at Doctrine\ORM\Mapping\ClassMetadataFactory->getTargetPlatform() (vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php:550) at Doctrine\ORM\Mapping\ClassMetadataFactory->completeIdGeneratorMapping(object(ClassMetadata)) (vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php:144) at Doctrine\ORM\Mapping\ClassMetadataFactory->doLoadMetadata(object(ClassMetadata), null, false, array()) (vendor/doctrine/doctrine-bundle/Mapping/ClassMetadataFactory.php:18) at Doctrine\Bundle\DoctrineBundle\Mapping\ClassMetadataFactory->doLoadMetadata(object(ClassMetadata), null, false, array()) (vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php:324) at Doctrine\Persistence\Mapping\AbstractClassMetadataFactory->loadMetadata('App\\Entity\\Categories') (vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php:192) at Doctrine\Persistence\Mapping\AbstractClassMetadataFactory->getMetadataFor('App\\Entity\\Categories') (vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php:313) at Doctrine\ORM\EntityManager->getClassMetadata('App\\Entity\\Categories') (var/cache/dev/ContainerESxSfTx/EntityManager_9a5be93.php:94) at ContainerESxSfTx\EntityManager_9a5be93->getClassMetadata('App\\Entity\\Categories') (vendor/doctrine/doctrine-bundle/Repository/ServiceEntityRepository.php:45) at Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository->__construct(object(Registry), 'App\\Entity\\Categories') (src/Repository/CategoriesRepository.php:19) at App\Repository\CategoriesRepository->__construct(object(Registry)) (var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php:1672) at ContainerESxSfTx\App_KernelDevDebugContainer->getCategoriesRepositoryService() (var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php:967) at ContainerESxSfTx\App_KernelDevDebugContainer->get_Container_Private_TwigService() (var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php:805) at ContainerESxSfTx\App_KernelDevDebugContainer->get_Container_Private_ProfilerService() (var/cache/dev/ContainerESxSfTx/getWebProfiler_Controller_ProfilerService.php:22) at ContainerESxSfTx\getWebProfiler_Controller_ProfilerService::do(object(App_KernelDevDebugContainer), true) (var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php:736) at ContainerESxSfTx\App_KernelDevDebugContainer->load('getWebProfiler_Controller_ProfilerService.php') (vendor/symfony/dependency-injection/Container.php:237) at Symfony\Component\DependencyInjection\Container->make('web_profiler.controller.profiler', 1) (vendor/symfony/dependency-injection/Container.php:219) at Symfony\Component\DependencyInjection\Container->get('web_profiler.controller.profiler') (vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php:53) at Symfony\Component\HttpKernel\Controller\ContainerControllerResolver->instantiateController('web_profiler.controller.profiler') (vendor/symfony/framework-bundle/Controller/ControllerResolver.php:29) at Symfony\Bundle\FrameworkBundle\Controller\ControllerResolver->instantiateController('web_profiler.controller.profiler') (vendor/symfony/http-kernel/Controller/ControllerResolver.php:120) at Symfony\Component\HttpKernel\Controller\ControllerResolver->createController('web_profiler.controller.profiler::panelAction') (vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php:42) at Symfony\Component\HttpKernel\Controller\ContainerControllerResolver->createController('web_profiler.controller.profiler::panelAction') (vendor/symfony/http-kernel/Controller/ControllerResolver.php:86) at Symfony\Component\HttpKernel\Controller\ControllerResolver->getController(object(Request)) (vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php:38) at Symfony\Component\HttpKernel\Controller\TraceableControllerResolver->getController(object(Request)) (vendor/symfony/http-kernel/HttpKernel.php:135) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:74) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:35) at require_once('/home/qgrnfysd/public_html/glenou.bj/vendor/autoload_runtime.php') (public/index.php:5) |
[1/3]
PDOException
|
---|
PDOException: SQLSTATE[HY000] [1040] Too many connections at vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php:28 at PDO->__construct('mysql:host=localhost;dbname=qgrnfysd_glenou;charset=utf8mb4;', 'qgrnfysd_jinukun', 'ka4!&O65Pi0K', array()) (vendor/doctrine/dbal/src/Driver/PDO/MySQL/Driver.php:28) at Doctrine\DBAL\Driver\PDO\MySQL\Driver->connect(array('url' => 'mysql://qgrnfysd_jinukun:ka4!&O65Pi0K@localhost/qgrnfysd_glenou', 'driver' => 'pdo_mysql', 'host' => 'localhost', 'port' => null, 'user' => 'qgrnfysd_jinukun', 'password' => 'ka4!&O65Pi0K', 'driverOptions' => array(), 'defaultTableOptions' => array('collation' => 'utf8mb4_unicode_ci'), 'dbname' => 'qgrnfysd_glenou', 'charset' => 'utf8mb4')) (vendor/doctrine/dbal/src/Driver/Middleware/AbstractDriverMiddleware.php:26) at Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware->connect(array('url' => 'mysql://qgrnfysd_jinukun:ka4!&O65Pi0K@localhost/qgrnfysd_glenou', 'driver' => 'pdo_mysql', 'host' => 'localhost', 'port' => null, 'user' => 'qgrnfysd_jinukun', 'password' => 'ka4!&O65Pi0K', 'driverOptions' => array(), 'defaultTableOptions' => array('collation' => 'utf8mb4_unicode_ci'), 'dbname' => 'qgrnfysd_glenou', 'charset' => 'utf8mb4')) (vendor/doctrine/dbal/src/Logging/Driver.php:34) at Doctrine\DBAL\Logging\Driver->connect(array('url' => 'mysql://qgrnfysd_jinukun:ka4!&O65Pi0K@localhost/qgrnfysd_glenou', 'driver' => 'pdo_mysql', 'host' => 'localhost', 'port' => null, 'user' => 'qgrnfysd_jinukun', 'password' => 'ka4!&O65Pi0K', 'driverOptions' => array(), 'defaultTableOptions' => array('collation' => 'utf8mb4_unicode_ci'), 'dbname' => 'qgrnfysd_glenou', 'charset' => 'utf8mb4')) (vendor/doctrine/dbal/src/Connection.php:341) at Doctrine\DBAL\Connection->connect() (vendor/doctrine/dbal/src/Connection.php:405) at Doctrine\DBAL\Connection->getDatabasePlatformVersion() (vendor/doctrine/dbal/src/Connection.php:367) at Doctrine\DBAL\Connection->detectDatabasePlatform() (vendor/doctrine/dbal/src/Connection.php:284) at Doctrine\DBAL\Connection->getDatabasePlatform() (vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php:754) at Doctrine\ORM\Mapping\ClassMetadataFactory->getTargetPlatform() (vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php:550) at Doctrine\ORM\Mapping\ClassMetadataFactory->completeIdGeneratorMapping(object(ClassMetadata)) (vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php:144) at Doctrine\ORM\Mapping\ClassMetadataFactory->doLoadMetadata(object(ClassMetadata), null, false, array()) (vendor/doctrine/doctrine-bundle/Mapping/ClassMetadataFactory.php:18) at Doctrine\Bundle\DoctrineBundle\Mapping\ClassMetadataFactory->doLoadMetadata(object(ClassMetadata), null, false, array()) (vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php:324) at Doctrine\Persistence\Mapping\AbstractClassMetadataFactory->loadMetadata('App\\Entity\\Categories') (vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php:192) at Doctrine\Persistence\Mapping\AbstractClassMetadataFactory->getMetadataFor('App\\Entity\\Categories') (vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php:313) at Doctrine\ORM\EntityManager->getClassMetadata('App\\Entity\\Categories') (var/cache/dev/ContainerESxSfTx/EntityManager_9a5be93.php:94) at ContainerESxSfTx\EntityManager_9a5be93->getClassMetadata('App\\Entity\\Categories') (vendor/doctrine/doctrine-bundle/Repository/ServiceEntityRepository.php:45) at Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository->__construct(object(Registry), 'App\\Entity\\Categories') (src/Repository/CategoriesRepository.php:19) at App\Repository\CategoriesRepository->__construct(object(Registry)) (var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php:1672) at ContainerESxSfTx\App_KernelDevDebugContainer->getCategoriesRepositoryService() (var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php:967) at ContainerESxSfTx\App_KernelDevDebugContainer->get_Container_Private_TwigService() (var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php:805) at ContainerESxSfTx\App_KernelDevDebugContainer->get_Container_Private_ProfilerService() (var/cache/dev/ContainerESxSfTx/getWebProfiler_Controller_ProfilerService.php:22) at ContainerESxSfTx\getWebProfiler_Controller_ProfilerService::do(object(App_KernelDevDebugContainer), true) (var/cache/dev/ContainerESxSfTx/App_KernelDevDebugContainer.php:736) at ContainerESxSfTx\App_KernelDevDebugContainer->load('getWebProfiler_Controller_ProfilerService.php') (vendor/symfony/dependency-injection/Container.php:237) at Symfony\Component\DependencyInjection\Container->make('web_profiler.controller.profiler', 1) (vendor/symfony/dependency-injection/Container.php:219) at Symfony\Component\DependencyInjection\Container->get('web_profiler.controller.profiler') (vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php:53) at Symfony\Component\HttpKernel\Controller\ContainerControllerResolver->instantiateController('web_profiler.controller.profiler') (vendor/symfony/framework-bundle/Controller/ControllerResolver.php:29) at Symfony\Bundle\FrameworkBundle\Controller\ControllerResolver->instantiateController('web_profiler.controller.profiler') (vendor/symfony/http-kernel/Controller/ControllerResolver.php:120) at Symfony\Component\HttpKernel\Controller\ControllerResolver->createController('web_profiler.controller.profiler::panelAction') (vendor/symfony/http-kernel/Controller/ContainerControllerResolver.php:42) at Symfony\Component\HttpKernel\Controller\ContainerControllerResolver->createController('web_profiler.controller.profiler::panelAction') (vendor/symfony/http-kernel/Controller/ControllerResolver.php:86) at Symfony\Component\HttpKernel\Controller\ControllerResolver->getController(object(Request)) (vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php:38) at Symfony\Component\HttpKernel\Controller\TraceableControllerResolver->getController(object(Request)) (vendor/symfony/http-kernel/HttpKernel.php:135) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:74) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:35) at require_once('/home/qgrnfysd/public_html/glenou.bj/vendor/autoload_runtime.php') (public/index.php:5) |