Exceptions
Exception
Doctrine\Persistence\Mapping\ MappingException
}/** @return self */public static function nonExistingClass(string $className){return new self(sprintf("Class '%s' does not exist", $className));}/** @param class-string $className */public static function classIsAnonymous(string $className): self{
in
vendor/doctrine/persistence/src/Persistence/Mapping/RuntimeReflectionService.php
::
nonExistingClass
(line 41)
* {@inheritDoc}*/public function getParentClasses(string $class){if (! class_exists($class)) {throw MappingException::nonExistingClass($class);}$parents = class_parents($class);assert($parents !== false);
in
vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php
->
getParentClasses
(line 283)
protected function getParentClasses(string $name){// Collect parent classes, ignoring transient (not-mapped) classes.$parentClasses = [];foreach (array_reverse($this->getReflectionService()->getParentClasses($name)) as $parentClass) {if ($this->getDriver()->isTransient($parentClass)) {continue;}$parentClasses[] = $parentClass;
in
vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php
->
getParentClasses
(line 318)
$this->initialize();}$loaded = [];$parentClasses = $this->getParentClasses($name);$parentClasses[] = $name;// Move down the hierarchy of parent classes, starting from the topmost class$parent = null;$rootEntityFound = false;
in
vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php
->
loadMetadata
(line 207)
/** @phpstan-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/src/EntityManager.php
->
getMetadataFor
(line 329)
** {@inheritDoc}*/public function getClassMetadata($className){return $this->metadataFactory->getMetadataFor($className);}/*** {@inheritDoc}*/
in
vendor/doctrine/doctrine-bundle/src/Repository/ContainerRepositoryFactory.php
->
getClassMetadata
(line 47)
** @template T of object*/private function doGetRepository(EntityManagerInterface $entityManager, string $entityName, bool $strictTypeCheck): ObjectRepository{$metadata = $entityManager->getClassMetadata($entityName);$repositoryServiceId = $metadata->customRepositoryClassName;$customRepositoryName = $metadata->customRepositoryClassName;if ($customRepositoryName !== null) {// fetch from the container
in
vendor/doctrine/doctrine-bundle/src/Repository/RepositoryFactoryCompatibility.php
->
doGetRepository
(line 38)
trait RepositoryFactoryCompatibility{/** {@inheritDoc} */public function getRepository(EntityManagerInterface $entityManager, $entityName): ObjectRepository{return $this->doGetRepository($entityManager, $entityName, false);}}}
in
vendor/doctrine/orm/src/EntityManager.php
->
getRepository
(line 839)
__METHOD__));}}$repository = $this->repositoryFactory->getRepository($this, $entityName);if (! $repository instanceof EntityRepository) {Deprecation::trigger('doctrine/orm','https://github.com/doctrine/orm/pull/9533','Not returning an instance of %s from %s::getRepository() is deprecated and will cause a TypeError on 3.0.',
EntityManager->getRepository('App\\Entity\\Page')
in
src/Controller/SitemapsController.php
(line 29)
{$em = $entityManager;$urls = array();foreach ($em->getRepository(\App\Entity\Page::class)->findAll() as $page){if (strpos($page->getName(), ".twig") !== false || $page->getCategory() == "intern")continue;if ($page->getName() == "intro")
in
vendor/symfony/http-kernel/HttpKernel.php
->
pageSitemapAction
(line 181)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$response instanceof Response) {$event = new ViewEvent($this, $request, $type, $response, $event);$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 197)
$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)
) {}public function run(): int{$response = $this->kernel->handle($this->request);if (Kernel::VERSION_ID >= 60400) {$response->send(false);if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 20:32:09 | deprecation |
User Deprecated: Since symfony/monolog-bridge 6.4: The "Symfony\Bridge\Monolog\Logger" class is deprecated, use HttpKernel's DebugLoggerConfigurator instead. {
"exception": {}
}
|
| INFO 20:32:09 | deprecation |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement. {
"exception": {}
}
|
| INFO 20:32:09 | deprecation |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement. {
"exception": {}
}
|
| INFO 20:32:09 | deprecation |
User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement. {
"exception": {}
}
|
| INFO 20:32:09 | deprecation |
User Deprecated: Since symfony/validator 6.4: Method "Symfony\Component\Validator\ValidatorBuilder::setDoctrineAnnotationReader()" is deprecated without replacement. {
"exception": {}
}
|
| INFO 20:32:09 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "latest"
},
"request_uri": "https://ballance.dev.qlax.de/_profiler/latest?q=%2F_profiler%2Feb08e4&type=request",
"method": "GET"
}
|
| DEBUG 20:32:09 | security |
Checking for authenticator support. {
"firewall_name": "main",
"authenticators": 1
}
|
| DEBUG 20:32:09 | security |
Checking support on authenticator. {
"firewall_name": "main",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator"
}
|
| DEBUG 20:32:09 | security |
Authenticator does not support the request. {
"firewall_name": "main",
"authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| INFO 20:32:09 | deprecation |
User Deprecated: In ORM 3.0, the AttributeDriver will report fields for the classes where they are declared. This may uncover invalid mapping configurations. To opt into the new mode today, set the "reportFieldsWhereDeclared" constructor parameter to true. (AttributeDriver.php:77 called by App_KernelDevDebugContainer.php:1330, https://github.com/doctrine/orm/pull/10455, package doctrine/orm) {
"exception": {}
}
|
| INFO 20:32:09 | deprecation |
User Deprecated: Not enabling lazy ghost objects is deprecated and will not be supported in Doctrine ORM 3.0. Ensure Doctrine\ORM\Configuration::setLazyGhostObjectEnabled(true) is called to enable them. (ProxyFactory.php:166 called by EntityManager.php:177, https://github.com/doctrine/orm/pull/10837/, package doctrine/orm) {
"exception": {}
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 20:32:09 | 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"
}
|
| INFO 20:32:09 | deprecation |
User Deprecated: Version detection logic for MySQL will change in DBAL 4. Please specify the version as the server reports it, e.g. "10.9.3-MariaDB" instead of "mariadb-10.9". (AbstractMySQLDriver.php:176 called by AbstractMySQLDriver.php:45, https://github.com/doctrine/dbal/pull/5779, package doctrine/orm) {
"exception": {}
}
|
| INFO 20:32:09 | deprecation |
User Deprecated: Annotations support is deprecated, migrate your application to use attributes and pass an instance of Gedmo\Mapping\Driver\AttributeReader to the Gedmo\Mapping\MappedEventSubscriber::setAnnotationReader() method instead. (MappedEventSubscriber.php:196 called by getStofDoctrineExtensions_Listener_LoggableService.php:28, https://github.com/doctrine-extensions/DoctrineExtensions/pull/2772, package gedmo/doctrine-extensions) {
"exception": {}
}
|
| INFO 20:32:09 | doctrine |
Connecting with parameters {params} {
"params": {
"driver": "pdo_mysql",
"idle_connection_ttl": 600,
"host": "db.qlax-infra.svc.cluster.local",
"port": 3306,
"user": "development",
"password": "<redacted>",
"driverOptions": [],
"defaultTableOptions": {
"collation": "utf8mb4_unicode_ci"
},
"dbname": "development_eb",
"serverVersion": "mariadb-10.6.11",
"charset": "utf8mb4"
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/request.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/command.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/time.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/memory.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/validator.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/ajax.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/form.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/exception.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/logger.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/events.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/router.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/cache.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/translation.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@Security/Collector/security.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/twig.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/http_client.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@Doctrine/Collector/db.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@Debug/Profiler/dump.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/mailer.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/config.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/exception.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/exception.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/layout.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/layout.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/base.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/base.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/exception.css.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/exception.css.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/profiler.css.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/profiler.css.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/header.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/header.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/symfony.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/_request_summary.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/_request_summary.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/alert-circle.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/forward.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/search.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/request.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/request.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/request.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/request.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/time.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/time.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/time.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/time.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/memory.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/memory.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/layout.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/validator.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/validator.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/validator.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/validator.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/ajax.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/ajax.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/layout.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/form.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/form.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/form.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/form.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/exception.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/exception.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/exception.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/logger.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/logger.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/logger.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/logger.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/events.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/events.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/events.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/event.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/router.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/router.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/router.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/router.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/cache.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/cache.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/cache.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/cache.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/translation.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/translation.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/translation.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/translation.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@Security/Collector/security.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@Security/Collector/security.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@Security/Collector/security.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@Security/Collector/icon.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/twig.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/twig.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/twig.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/twig.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/http_client.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/http_client.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/http_client.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/http-client.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@Doctrine/Collector/db.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@Doctrine/Collector/db.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@Doctrine/Collector/db.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@Doctrine/Collector/database.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@Doctrine/Collector/database.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@Debug/Profiler/dump.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@Debug/Profiler/dump.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@Debug/Profiler/dump.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@Debug/Profiler/icon.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/mailer.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/mailer.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/mailer.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/mailer.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/config.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/config.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Collector/config.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/config.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/settings.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/settings.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/settings.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/settings-theme-system.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/settings-theme-light.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/settings-theme-dark.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/settings-width-fixed.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Icon/settings-width-fitted.svg"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/base_js.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/base_js.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 20:32:09 | 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 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse"
}
|
| DEBUG 20:32:09 | 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 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 20:32:09 | 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 20:32:09 | 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 20:32:09 | 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 20:32:09 | 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 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 20:32:09 | 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 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/search.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) {
"sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.content AS content_3, t0.language AS language_4, t0.createdAt AS createdAt_5, t0.updatedAt AS updatedAt_6, t0.subject AS subject_7, t0.sender AS sender_8, t0.createdBy_id AS createdBy_id_9, t0.updatedBy_id AS updatedBy_id_10 FROM Template t0 WHERE t0.name = ? LIMIT 1",
"params": {
"1": "@WebProfiler/Profiler/search.html.twig"
},
"types": {
"1": 2
}
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse"
}
|
| DEBUG 20:32:09 | 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 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 20:32:09 | 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 20:32:09 | 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 20:32:09 | 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 20:32:09 | 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 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
|
| DEBUG 20:32:09 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
Stack Trace
|
MappingException
|
|---|
Doctrine\Persistence\Mapping\MappingException:
Class 'App\Entity\Page' does not exist
at vendor/doctrine/persistence/src/Persistence/Mapping/MappingException.php:80
at Doctrine\Persistence\Mapping\MappingException::nonExistingClass('App\\Entity\\Page')
(vendor/doctrine/persistence/src/Persistence/Mapping/RuntimeReflectionService.php:41)
at Doctrine\Persistence\Mapping\RuntimeReflectionService->getParentClasses('App\\Entity\\Page')
(vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php:283)
at Doctrine\Persistence\Mapping\AbstractClassMetadataFactory->getParentClasses('App\\Entity\\Page')
(vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php:318)
at Doctrine\Persistence\Mapping\AbstractClassMetadataFactory->loadMetadata('App\\Entity\\Page')
(vendor/doctrine/persistence/src/Persistence/Mapping/AbstractClassMetadataFactory.php:207)
at Doctrine\Persistence\Mapping\AbstractClassMetadataFactory->getMetadataFor('App\\Entity\\Page')
(vendor/doctrine/orm/src/EntityManager.php:329)
at Doctrine\ORM\EntityManager->getClassMetadata('App\\Entity\\Page')
(vendor/doctrine/doctrine-bundle/src/Repository/ContainerRepositoryFactory.php:47)
at Doctrine\Bundle\DoctrineBundle\Repository\ContainerRepositoryFactory->doGetRepository(object(EntityManagerGhostEbeb667), 'App\\Entity\\Page', false)
(vendor/doctrine/doctrine-bundle/src/Repository/RepositoryFactoryCompatibility.php:38)
at Doctrine\Bundle\DoctrineBundle\Repository\ContainerRepositoryFactory->getRepository(object(EntityManagerGhostEbeb667), 'App\\Entity\\Page')
(vendor/doctrine/orm/src/EntityManager.php:839)
at Doctrine\ORM\EntityManager->getRepository('App\\Entity\\Page')
(src/Controller/SitemapsController.php:29)
at App\Controller\SitemapsController->pageSitemapAction(object(EntityManagerGhostEbeb667))
(vendor/symfony/http-kernel/HttpKernel.php:181)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:197)
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:29)
at require_once('/var/app/vendor/autoload_runtime.php')
(public/index.php:5)
|