Error 404 Not Found

GET http://phlindia.com/robots.txt

Exceptions

No route found for "GET http://phlindia.com/robots.txt"

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#4688
  -statusCode: 404
  -headers: []
}
  1.             if ($referer $request->headers->get('referer')) {
  2.                 $message .= sprintf(' (from "%s")'$referer);
  3.             }
  4.             throw new NotFoundHttpException($message$e);
  5.         } catch (MethodNotAllowedException $e) {
  6.             $message sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)'$request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', '$e->getAllowedMethods()));
  7.             throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message$e);
  8.         }
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function handleRaw(Request $requestint $type self::MAIN_REQUEST): Response
  3.     {
  4.         // request
  5.         $event = new RequestEvent($this$request$type);
  6.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  7.         if ($event->hasResponse()) {
  8.             return $this->filterResponse($event->getResponse(), $request$type);
  9.         }
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle() in public/index.php (line 20)
  1.     Debug::enable();
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Symfony\Component\Routing\Exception\ ResourceNotFoundException

No routes found for "/robots.txt/".

  1.             if ($allowSchemes) {
  2.                 goto redirect_scheme;
  3.             }
  4.         }
  5.         throw new ResourceNotFoundException(sprintf('No routes found for "%s".'$pathinfo));
  6.     }
  7.     private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array
  8.     {
  9.         $allow $allowSchemes = [];
  1.     public function matchRequest(Request $request): array
  2.     {
  3.         $this->request $request;
  4.         $ret $this->match($request->getPathInfo());
  5.         $this->request null;
  6.         return $ret;
  7.     }
in vendor/symfony/routing/Router.php -> matchRequest (line 237)
  1.         if (!$matcher instanceof RequestMatcherInterface) {
  2.             // fallback to the default UrlMatcherInterface
  3.             return $matcher->match($request->getPathInfo());
  4.         }
  5.         return $matcher->matchRequest($request);
  6.     }
  7.     /**
  8.      * Gets the UrlMatcher or RequestMatcher instance associated with this Router.
  9.      */
  1.         // add attributes based on the request (routing)
  2.         try {
  3.             // matching a request is more powerful than matching a URL path + context, so try that first
  4.             if ($this->matcher instanceof RequestMatcherInterface) {
  5.                 $parameters $this->matcher->matchRequest($request);
  6.             } else {
  7.                 $parameters $this->matcher->match($request->getPathInfo());
  8.             }
  9.             $this->logger?->info('Matched route "{route}".', [
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function handleRaw(Request $requestint $type self::MAIN_REQUEST): Response
  3.     {
  4.         // request
  5.         $event = new RequestEvent($this$request$type);
  6.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  7.         if ($event->hasResponse()) {
  8.             return $this->filterResponse($event->getResponse(), $request$type);
  9.         }
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle() in public/index.php (line 20)
  1.     Debug::enable();
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs

Level Channel Message
INFO 23:24:48 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "33660d"
    },
    "request_uri": "http://phlindia.com/_profiler/33660d",
    "method": "GET"
}
DEBUG 23:24:48 security Checking for authenticator support.
{
    "firewall_name": "user_area",
    "authenticators": 2
}
DEBUG 23:24:48 security Checking support on authenticator.
{
    "firewall_name": "user_area",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator"
}
DEBUG 23:24:48 security Authenticator does not support the request.
{
    "firewall_name": "user_area",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator"
}
DEBUG 23:24:48 security Checking support on authenticator.
{
    "firewall_name": "user_area",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator"
}
DEBUG 23:24:48 security Authenticator does not support the request.
{
    "firewall_name": "user_area",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator"
}
DEBUG 23:24:48 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
INFO 23:24:48 php User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement.
{
    "exception": {}
}
INFO 23:24:48 php User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement.
{
    "exception": {}
}
INFO 23:24:48 php User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement.
{
    "exception": {}
}
INFO 23:24:48 php User Deprecated: Since symfony/validator 6.4: Method "Symfony\Component\Validator\ValidatorBuilder::setDoctrineAnnotationReader()" is deprecated without replacement.
{
    "exception": {}
}
INFO 23:24:48 php User Deprecated: In ORM 3.0, the AttributeDriver will report fields for the classes where they are declared. This may uncover invalid mapping configurations. To opt into the new mode today, set the "reportFieldsWhereDeclared" constructor parameter to true. (AttributeDriver.php:81 called by App_KernelDevDebugContainer.php:668, https://github.com/doctrine/orm/pull/10455, package doctrine/orm)
{
    "exception": {}
}
INFO 23:24:48 php User Deprecated: Not enabling lazy ghost objects is deprecated and will not be supported in Doctrine ORM 3.0. Ensure Doctrine\ORM\Configuration::setLazyGhostObjectEnabled(true) is called to enable them. (ProxyFactory.php:169 called by EntityManager.php:181, https://github.com/doctrine/orm/pull/10837/, package doctrine/orm)
{
    "exception": {}
}
INFO 23:24:48 doctrine Connecting with parameters {params}
{
    "params": {
        "driver": "pdo_mysql",
        "idle_connection_ttl": 600,
        "host": "127.0.0.1",
        "port": 3306,
        "user": "phcom_user",
        "password": "<redacted>",
        "driverOptions": [],
        "defaultTableOptions": {
            "collation": "utf8mb4_unicode_ci"
        },
        "dbname": "phcom_db",
        "charset": "utf8mb4"
    }
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 23:24:48 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 23:24:48 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 23:24:48 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 23:24:48 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 23:24:48 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/request.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/command.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/time.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/memory.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/validator.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/ajax.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/form.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/exception.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/logger.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/events.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/router.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/cache.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/translation.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@Security/Collector/security.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/twig.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@Doctrine/Collector/db.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@DoctrineMigrations/Collector/migrations.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@Debug/Profiler/dump.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/mailer.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/config.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/exception.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/exception.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/layout.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/layout.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/base.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/base.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/exception.css.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/exception.css.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/profiler.css.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/profiler.css.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/header.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/header.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/symfony.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/_request_summary.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/_request_summary.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/alert-circle.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/search.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/request.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/request.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/request.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/request.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/time.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/time.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/time.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/time.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/memory.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/memory.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/layout.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/validator.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/validator.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/validator.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/validator.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/ajax.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/ajax.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/layout.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/form.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/form.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/form.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/form.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/exception.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/exception.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/exception.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/logger.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/logger.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/logger.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/logger.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/events.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/events.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/events.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/event.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/router.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/router.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/router.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/router.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/cache.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/cache.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/cache.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/cache.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/translation.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/translation.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/translation.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/translation.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@Security/Collector/security.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@Security/Collector/security.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@Security/Collector/security.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@Security/Collector/icon.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/twig.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/twig.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/twig.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/twig.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@Doctrine/Collector/db.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@Doctrine/Collector/db.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@Doctrine/Collector/db.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@Doctrine/Collector/database.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@Doctrine/Collector/database.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@DoctrineMigrations/Collector/migrations.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@DoctrineMigrations/Collector/migrations.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@DoctrineMigrations/Collector/migrations.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@DoctrineMigrations/Collector/icon-v3.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@DoctrineMigrations/Collector/icon-v3.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@Debug/Profiler/dump.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@Debug/Profiler/dump.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@Debug/Profiler/dump.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@Debug/Profiler/icon.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/mailer.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/mailer.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/mailer.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/mailer.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/config.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/config.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Collector/config.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/config.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/settings.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/settings.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/settings.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/settings-theme-system.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/settings-theme-light.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/settings-theme-dark.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/settings-width-fixed.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Icon/settings-width-fitted.svg"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/base_js.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/base_js.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 23:24:48 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 23:24:48 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 23:24:48 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 23:24:48 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 23:24:48 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
DEBUG 23:24:48 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 23:24:48 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 23:24:48 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 23:24:48 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 23:24:48 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 23:24:48 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 23:24:48 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 23:24:48 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 23:24:48 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 23:24:48 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 23:24:48 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 23:24:48 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 23:24:48 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 23:24:48 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 23:24:48 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 23:24:48 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 23:24:48 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 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 23:24:48 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 23:24:48 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 23:24:48 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 23:24:48 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 23:24:48 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/search.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 doctrine Executing statement: SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.source AS source_2, t0.name AS name_3, t0.last_update AS last_update_4, t0.backup1 AS backup1_5, t0.backup1_date AS backup1_date_6, t0.backup2 AS backup2_7, t0.backup2_date AS backup2_date_8, t0.style AS style_9, t0.location AS location_10, t0.can_delete AS can_delete_11 FROM template t0 WHERE t0.name = ? LIMIT 1",
    "params": {
        "1": "@WebProfiler/Profiler/search.html.twig"
    },
    "types": {
        "1": 2
    }
}
DEBUG 23:24:48 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 23:24:48 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 23:24:48 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 23:24:48 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 23:24:48 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 23:24:48 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 23:24:48 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 23:24:48 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 23:24:48 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 23:24:48 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 23:24:48 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 23:24:48 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 23:24:48 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 23:24:48 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 23:24:48 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 23:24:48 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 23:24:48 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 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 23:24:48 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 23:24:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 23:24:48 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 23:24:48 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 23:24:48 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 23:24:48 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 23:24:48 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}

Stack Traces 2

[2/2] NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET http://phlindia.com/robots.txt"

  at vendor/symfony/http-kernel/EventListener/RouterListener.php:127
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:157)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:197)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:20)                
[1/2] ResourceNotFoundException
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/robots.txt/".

  at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
  at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match()
     (vendor/symfony/routing/Matcher/UrlMatcher.php:97)
  at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest()
     (vendor/symfony/routing/Router.php:237)
  at Symfony\Component\Routing\Router->matchRequest()
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:105)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:157)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:197)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:20)