Exceptions
Exception
Twig\Error\ RuntimeError
Show exception properties
Twig\Error\RuntimeError {#1839 -lineno: 3 -name: "level/index.html.twig" -rawMessage: "Impossible to access an attribute ("name") on a null variable." -sourcePath: "/home/chezamus/public_html/templates/level/index.html.twig" -sourceCode: """ {% extends 'base_flash.html.twig' %}\n \n {% block title %}{{instrument}} {{exercise}} in {{key.name}} {% if key.name == 'Mixed' %} Keys {% else %} {{key.mode}} {% endif %} - Start Now{% endblock %}\n {% block meta_description %}<meta name="description" content="Choose a level for {{instrument}} {{ exercise }} flashcards. Enhance learning with engaging flash cards for teachers and students.">{% endblock %}\n {% block stylesheets %}\n <link rel="stylesheet" href="{{asset('assets/css/loader.css')}}">\n \n {% endblock %}\n \n {% block body %}\n <section class="highlight-clean">\n <div class="container">\n {# <div class="intro">\n <h2 class="text-center">{{instrument}} {{exercise}} in {{key.name}} {{key.mode}} - Which Level?</h2>\n <p class="text-center">\n There are {{levels|length}} difficulty levels. Select a difficulty level from the options below. </p>\n </div> #}\n <div id="crumbs">\n {% if is_granted('IS_AUTHENTICATED_REMEMBERED')%}\n <a class="btn btn-primary btn-sm" href="{{ path('level_new') }}">Create new</a>\n {% endif %}\n <h1>{{instrument}} {{exercise}} in {{key.name}} {% if key.name == 'Mixed' %} Keys {% else %} {{key.mode}} {% endif %} - Which Level?</h1>\n <a class="btn btn-sm mb-1 btn-info" style="display:inline!important" href="{{path('flash_card_start')}}">Instruments</a>\n <a class="btn btn-sm mb-1 btn-info" style="display:inline!important" href="{{path('exercise_index_updated', {'instrument': instrument.name})}}">Exercise</a>\n <a class="btn btn-sm mb-1 btn-info" style="display:inline!important" href="{{path('my_key_index_updated', {'instrument': instrument.name, 'exercise': exercise.type})}}"><i class="fa fa-shopping-bag" aria-hidden="true"></i> Key</a>\n <a class="btn btn-sm mb-1 btn-info" style="display:inline!important" href="#"><i class="fa fa-cart-plus" aria-hidden="true"></i> Level </a>\n \n </div> \n <div class="buttons">\n {% for level in levels %}\n {% set len = exercise.flashCards|filter( flashCard => flashCard.level == level and flashCard.mykey == key)|length %}\n {% if len > 0 %}\n \n <h2 style="font-size:1.2em;font-weight:500;margin-bottom:0!important;"><a href="{{path('flash_card_index_updated', {'instrument': instrument.name, 'exercise': exercise.type, 'key': key.name, 'level': level.name })}}" class="btn mb-1 btn-primary" >{{level.name}} ({{len}} Cards)</a></h2>\n \n {% endif %}\n {% endfor %}\n </div>\n \n </div>\n </section>\n \n <div id="preloader">\n <div id="loader"></div>\n </div>\n \n {% endblock %}\n {% block javascripts %}\n \n <script>\n $("#downloadpdf").click(function(){\n $("#preloader").fadeIn(250);\n });\n </script>\n \n {% endblock %} """ }
in
templates/level/index.html.twig
(line 3)
{% extends 'base_flash.html.twig' %}
{% block title %}{{instrument}} {{exercise}} in {{key.name}} {% if key.name == 'Mixed' %} Keys {% else %} {{key.mode}} {% endif %} - Start Now{% endblock %}
{% block meta_description %}<meta name="description" content="Choose a level for {{instrument}} {{ exercise }} flashcards. Enhance learning with engaging flash cards for teachers and students.">{% endblock %}
{% block stylesheets %}
<link rel="stylesheet" href="{{asset('assets/css/loader.css')}}">
{% endblock %}
in
var/cache/dev/twig/7f/7f2cea7887bae38fa784075e5d40499b.php
twig_get_attribute
(line 75)
echo twig_escape_filter($this->env, (isset($context["instrument"]) || array_key_exists("instrument", $context) ? $context["instrument"] : (function () { throw new RuntimeError('Variable "instrument" does not exist.', 3, $this->source); })()), "html", null, true);
echo " ";
echo twig_escape_filter($this->env, (isset($context["exercise"]) || array_key_exists("exercise", $context) ? $context["exercise"] : (function () { throw new RuntimeError('Variable "exercise" does not exist.', 3, $this->source); })()), "html", null, true);
echo " in ";
echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, (isset($context["key"]) || array_key_exists("key", $context) ? $context["key"] : (function () { throw new RuntimeError('Variable "key" does not exist.', 3, $this->source); })()), "name", [], "any", false, false, false, 3), "html", null, true);
echo " ";
if ((twig_get_attribute($this->env, $this->source, (isset($context["key"]) || array_key_exists("key", $context) ? $context["key"] : (function () { throw new RuntimeError('Variable "key" does not exist.', 3, $this->source); })()), "name", [], "any", false, false, false, 3) == "Mixed")) {
echo " Keys ";
} else {
echo " ";
in
vendor/twig/twig/src/Template.php
->
block_title
(line 171)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');
}
if (null !== $template) {
try {
$template->$block($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($template->getSourceContext());
}
in
var/cache/dev/twig/2c/2cb7d1fe96ae0cd8beb4bc2a5abae4a8.php
->
displayBlock
(line 57)
<head>
<meta charset=\"utf-8\">
<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, shrink-to-fit=no\">
<title>";
// line 6
$this->displayBlock('title', $context, $blocks);
echo "</title>
<meta name=\"keywords\" content=\"Music flash cards, piano flash cards, guitar flash cards, sight-reading flash cards, chords flash cards\">
";
// line 8
$this->displayBlock('meta_description', $context, $blocks);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 394)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
var/cache/dev/twig/7f/7f2cea7887bae38fa784075e5d40499b.php
->
display
(line 52)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "level/index.html.twig"));
$this->parent = $this->loadTemplate("base_flash.html.twig", "level/index.html.twig", 1);
$this->parent->display($context, array_merge($this->blocks, $blocks));
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 394)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
vendor/twig/twig/src/Template.php
->
display
(line 379)
ob_start();
} else {
ob_start(function () { return ''; });
}
try {
$this->display($context);
} catch (\Throwable $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 38)
$this->template = $template;
}
public function render(array $context = []): string
{
return $this->template->render($context);
}
public function display(array $context = [])
{
// using func_get_args() allows to not expose the blocks argument
in
vendor/twig/twig/src/Environment.php
->
render
(line 280)
* @throws SyntaxError When an error occurred during compilation
* @throws RuntimeError When an error occurred during rendering
*/
public function render($name, array $context = []): string
{
return $this->load($name)->render($context);
}
/**
* Displays a template.
*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
render
(line 448)
if (null !== $block) {
return $this->container->get('twig')->load($view)->renderBlock($block, $parameters);
}
return $this->container->get('twig')->render($view, $parameters);
}
private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response
{
$content = $this->doRenderView($view, $block, $parameters, $method);
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRenderView
(line 453)
return $this->container->get('twig')->render($view, $parameters);
}
private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response
{
$content = $this->doRenderView($view, $block, $parameters, $method);
$response ??= new Response();
if (200 === $response->getStatusCode()) {
foreach ($parameters as $v) {
if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
doRender
(line 253)
* If an invalid form is found in the list of parameters, a 422 status code is returned.
* Forms found in parameters are auto-cast to form views.
*/
protected function render(string $view, array $parameters = [], Response $response = null): Response
{
return $this->doRender($view, null, $parameters, $response, __FUNCTION__);
}
/**
* Renders a block in a view.
*
AbstractController->render('level/index.html.twig', array('levels' => array(object(Level), object(Level), object(Level)), 'key' => null, 'instrument' => object(Instrument), 'exercise' => null))
in
src/Controller/LevelController.php
(line 62)
return $this->render('level/index.html.twig', [
'levels' => $levelRepository->findAll(),
'key' => $key,
'instrument' => $instrument,
'exercise' => $exercise,
]);
}
#[Route(path: '/list', name: 'level_list', methods: ['GET'])]
public function list(LevelRepository $levelRepository): Response
in
vendor/symfony/http-kernel/HttpKernel.php
->
indexWithText
(line 181)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$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()
);
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
Logs
Level | Channel | Message |
---|---|---|
INFO 00:23:36 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "2ef8ff" }, "request_uri": "https://chezamusicschool.co.ke/_profiler/2ef8ff", "method": "GET" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 00:23:36 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 00:23:36 | 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 00:23:36 | 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 00:23:36 | event |
Notified event "kernel.controller_arguments" to listener "ContainerYKux04k\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerYKux04k\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 00:23:36 | 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 00:23:36 | doctrine |
Connecting with parameters {params} { "params": { "driver": "pdo_mysql", "host": "127.0.0.1", "port": 3306, "user": "chezamus_admin", "password": "<redacted>", "driverOptions": [], "defaultTableOptions": [], "dbname": "chezamus_db", "serverVersion": "5.7.42", "charset": "utf8mb4" } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/request.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/command.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/time.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/memory.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/validator.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/ajax.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/form.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/exception.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/logger.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/events.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/router.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/cache.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/translation.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@Security/Collector/security.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/twig.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/http_client.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@Doctrine/Collector/db.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@Debug/Profiler/dump.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/mailer.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/notifier.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/serializer.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@SonataBlock/Profiler/block.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/config.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/exception.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/exception.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/layout.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/layout.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/base.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/base.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/exception.css.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/exception.css.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/profiler.css.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/profiler.css.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/header.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/header.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/symfony.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/_request_summary.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/_request_summary.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/alert-circle.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/search.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/request.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/request.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/request.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/request.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/time.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/time.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/time.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/time.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/memory.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/memory.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/layout.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/validator.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/validator.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/validator.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/validator.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/ajax.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/ajax.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/layout.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/form.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/form.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/form.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/form.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/exception.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/exception.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/exception.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/logger.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/logger.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/logger.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/logger.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/events.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/events.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/events.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/event.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/router.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/router.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/router.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/router.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/cache.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/cache.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/cache.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/cache.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/translation.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/translation.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/translation.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/translation.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@Security/Collector/security.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@Security/Collector/security.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@Security/Collector/security.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@Security/Collector/icon.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/twig.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/twig.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/twig.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/twig.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/http_client.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/http_client.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/http_client.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/http-client.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@Doctrine/Collector/db.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@Doctrine/Collector/db.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@Doctrine/Collector/db.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@Doctrine/Collector/database.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@Doctrine/Collector/database.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@Debug/Profiler/dump.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@Debug/Profiler/dump.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@Debug/Profiler/dump.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@Debug/Profiler/icon.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/mailer.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/mailer.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/mailer.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/mailer.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/notifier.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/notifier.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/notifier.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/notifier.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/serializer.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/serializer.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/serializer.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/serializer.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@SonataBlock/Profiler/block.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@SonataBlock/Profiler/block.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@SonataBlock/Profiler/block.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@SonataBlock/Profiler/icon.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@SonataBlock/Profiler/icon.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/config.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/config.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Collector/config.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/config.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/settings.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/settings.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/settings.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/settings-theme-system.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/settings-theme-light.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/settings-theme-dark.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/settings-width-fixed.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Icon/settings-width-fitted.svg" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/base_js.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/base_js.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 00:23:36 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 00:23:36 | 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 00:23:36 | 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 00:23:36 | event |
Notified event "kernel.controller_arguments" to listener "ContainerYKux04k\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerYKux04k\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 00:23:36 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest" } |
DEBUG 00:23:36 | 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 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 00:23:36 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 00:23:36 | 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 00:23:36 | 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 00:23:36 | event |
Notified event "kernel.controller_arguments" to listener "ContainerYKux04k\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerYKux04k\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 00:23:36 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/search.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.typography AS typography_3, t0.position AS position_4, t0.visible AS visible_5, t0.last_updated AS last_updated_6, t0.page_id AS page_id_7 FROM section t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "@WebProfiler/Profiler/search.html.twig" }, "types": { "1": 2 } } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 00:23:36 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest" } |
DEBUG 00:23:36 | 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 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 00:23:36 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 00:23:36 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 00:23:36 | 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 00:23:36 | 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 00:23:36 | event |
Notified event "kernel.controller_arguments" to listener "ContainerYKux04k\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". { "event": "kernel.controller_arguments", "listener": "ContainerYKux04k\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments" } |
DEBUG 00:23:36 | 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
RuntimeError
|
---|
Twig\Error\RuntimeError: Impossible to access an attribute ("name") on a null variable. at templates/level/index.html.twig:3 at twig_get_attribute(object(Environment), object(Source), null, 'name', array(), 'any', false, false, false, 3) (var/cache/dev/twig/7f/7f2cea7887bae38fa784075e5d40499b.php:75) at __TwigTemplate_94d38dc73b33a37a49b493b21380500b->block_title(array('levels' => array(object(Level), object(Level), object(Level)), 'key' => null, 'instrument' => object(Instrument), 'exercise' => null, 'app' => object(AppVariable), 'gg_recaptcha_site_key' => '6LeSjOUfAAAAANoNRc0kpbzppmPvlXTKtbu5fMGJ', 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_title'), 'meta_description' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_meta_description'), 'stylesheets' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_stylesheets'), 'navbar' => array(object(__TwigTemplate_31264a8c65bdd1a6a0d46b752e399af4), 'block_navbar'), 'body' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_body'), 'footer' => array(object(__TwigTemplate_31264a8c65bdd1a6a0d46b752e399af4), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_javascripts'))) (vendor/twig/twig/src/Template.php:171) at Twig\Template->displayBlock('title', array('levels' => array(object(Level), object(Level), object(Level)), 'key' => null, 'instrument' => object(Instrument), 'exercise' => null, 'app' => object(AppVariable), 'gg_recaptcha_site_key' => '6LeSjOUfAAAAANoNRc0kpbzppmPvlXTKtbu5fMGJ', 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_title'), 'meta_description' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_meta_description'), 'stylesheets' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_stylesheets'), 'navbar' => array(object(__TwigTemplate_31264a8c65bdd1a6a0d46b752e399af4), 'block_navbar'), 'body' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_body'), 'footer' => array(object(__TwigTemplate_31264a8c65bdd1a6a0d46b752e399af4), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_javascripts'))) (var/cache/dev/twig/2c/2cb7d1fe96ae0cd8beb4bc2a5abae4a8.php:57) at __TwigTemplate_31264a8c65bdd1a6a0d46b752e399af4->doDisplay(array('levels' => array(object(Level), object(Level), object(Level)), 'key' => null, 'instrument' => object(Instrument), 'exercise' => null, 'app' => object(AppVariable), 'gg_recaptcha_site_key' => '6LeSjOUfAAAAANoNRc0kpbzppmPvlXTKtbu5fMGJ', 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_title'), 'meta_description' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_meta_description'), 'stylesheets' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_stylesheets'), 'navbar' => array(object(__TwigTemplate_31264a8c65bdd1a6a0d46b752e399af4), 'block_navbar'), 'body' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_body'), 'footer' => array(object(__TwigTemplate_31264a8c65bdd1a6a0d46b752e399af4), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_javascripts'))) (vendor/twig/twig/src/Template.php:394) at Twig\Template->displayWithErrorHandling(array('levels' => array(object(Level), object(Level), object(Level)), 'key' => null, 'instrument' => object(Instrument), 'exercise' => null, 'app' => object(AppVariable), 'gg_recaptcha_site_key' => '6LeSjOUfAAAAANoNRc0kpbzppmPvlXTKtbu5fMGJ', 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_title'), 'meta_description' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_meta_description'), 'stylesheets' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_stylesheets'), 'navbar' => array(object(__TwigTemplate_31264a8c65bdd1a6a0d46b752e399af4), 'block_navbar'), 'body' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_body'), 'footer' => array(object(__TwigTemplate_31264a8c65bdd1a6a0d46b752e399af4), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_javascripts'))) (vendor/twig/twig/src/Template.php:367) at Twig\Template->display(array('levels' => array(object(Level), object(Level), object(Level)), 'key' => null, 'instrument' => object(Instrument), 'exercise' => null, 'app' => object(AppVariable), 'gg_recaptcha_site_key' => '6LeSjOUfAAAAANoNRc0kpbzppmPvlXTKtbu5fMGJ', 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_title'), 'meta_description' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_meta_description'), 'stylesheets' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_body'), 'javascripts' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_javascripts'))) (var/cache/dev/twig/7f/7f2cea7887bae38fa784075e5d40499b.php:52) at __TwigTemplate_94d38dc73b33a37a49b493b21380500b->doDisplay(array('levels' => array(object(Level), object(Level), object(Level)), 'key' => null, 'instrument' => object(Instrument), 'exercise' => null, 'app' => object(AppVariable), 'gg_recaptcha_site_key' => '6LeSjOUfAAAAANoNRc0kpbzppmPvlXTKtbu5fMGJ', 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_title'), 'meta_description' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_meta_description'), 'stylesheets' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_body'), 'javascripts' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_javascripts'))) (vendor/twig/twig/src/Template.php:394) at Twig\Template->displayWithErrorHandling(array('levels' => array(object(Level), object(Level), object(Level)), 'key' => null, 'instrument' => object(Instrument), 'exercise' => null, 'app' => object(AppVariable), 'gg_recaptcha_site_key' => '6LeSjOUfAAAAANoNRc0kpbzppmPvlXTKtbu5fMGJ', 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_title'), 'meta_description' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_meta_description'), 'stylesheets' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_body'), 'javascripts' => array(object(__TwigTemplate_94d38dc73b33a37a49b493b21380500b), 'block_javascripts'))) (vendor/twig/twig/src/Template.php:367) at Twig\Template->display(array('levels' => array(object(Level), object(Level), object(Level)), 'key' => null, 'instrument' => object(Instrument), 'exercise' => null)) (vendor/twig/twig/src/Template.php:379) at Twig\Template->render(array('levels' => array(object(Level), object(Level), object(Level)), 'key' => null, 'instrument' => object(Instrument), 'exercise' => null)) (vendor/twig/twig/src/TemplateWrapper.php:38) at Twig\TemplateWrapper->render(array('levels' => array(object(Level), object(Level), object(Level)), 'key' => null, 'instrument' => object(Instrument), 'exercise' => null)) (vendor/twig/twig/src/Environment.php:280) at Twig\Environment->render('level/index.html.twig', array('levels' => array(object(Level), object(Level), object(Level)), 'key' => null, 'instrument' => object(Instrument), 'exercise' => null)) (vendor/symfony/framework-bundle/Controller/AbstractController.php:448) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('level/index.html.twig', null, array('levels' => array(object(Level), object(Level), object(Level)), 'key' => null, 'instrument' => object(Instrument), 'exercise' => null), 'render') (vendor/symfony/framework-bundle/Controller/AbstractController.php:453) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender('level/index.html.twig', null, array('levels' => array(object(Level), object(Level), object(Level)), 'key' => null, 'instrument' => object(Instrument), 'exercise' => null), null, 'render') (vendor/symfony/framework-bundle/Controller/AbstractController.php:253) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('level/index.html.twig', array('levels' => array(object(Level), object(Level), object(Level)), 'key' => null, 'instrument' => object(Instrument), 'exercise' => null)) (src/Controller/LevelController.php:62) at App\Controller\LevelController->indexWithText(object(LevelRepository), object(MyKeyRepository), object(InstrumentRepository), object(ExerciseRepository), object(Instrument), null, null) (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('/home/chezamus/public_html/vendor/autoload_runtime.php') (public/index.php:5) |