Exceptions
Exceptions 2
Twig\Error\ RuntimeError
in
templates/front/sitemapLinks.html.twig
(line 11)
"title":("sitemap.header.title"|trans),
"intro":("sitemap.header.intro"|trans),
} %}
<section class="container pay-70 container-custom">
<ul>
{% for key, link in getSitemapLinks() %}
<li>
<a href="{{ link }}">{{ link }}</a>
</li>
{% endfor %}
</ul>
in
var/cache/dev/twig/3a/3a6ddbfda1c6dbd559881f014b52374238fbf0dfde27f51181050702c04d1bce.php
->
displayBlock
(line 181)
// line 95
echo " ";
$this->displayBlock('navbar', $context, $blocks);
// line 113
echo " ";
$this->displayBlock('body', $context, $blocks);
// line 114
echo " ";
$this->displayBlock('footer', $context, $blocks);
// line 117
echo " <div class=\"position-fixed b-20 r-20 pointer scrollToTopDiv scrollToTop bgc-white pa-12\">
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 394)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
var/cache/dev/twig/4b/4b510a995d944cfff65d137b50a2d792fe2a374241e3ec732a8d951c21826577.php
->
display
(line 48)
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "front/sitemapLinks.html.twig"));
$this->parent = $this->loadTemplate("base.html.twig", "front/sitemapLinks.html.twig", 1);
$this->parent->display($context, array_merge($this->blocks, $blocks));
$__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 394)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
vendor/twig/twig/src/Template.php
->
display
(line 379)
ob_start();
} else {
ob_start(function () { return ''; });
}
try {
$this->display($context);
} catch (\Throwable $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 40)
public function render(array $context = []): string
{
// using func_get_args() allows to not expose the blocks argument
// as it should only be used by internal code
return $this->template->render($context, \func_get_args()[1] ?? []);
}
public function display(array $context = [])
{
// using func_get_args() allows to not expose the blocks argument
in
vendor/twig/twig/src/Environment.php
->
render
(line 277)
* @throws SyntaxError When an error occurred during compilation
* @throws RuntimeError When an error occurred during rendering
*/
public function render($name, array $context = []): string
{
return $this->load($name)->render($context);
}
/**
* Displays a template.
*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
render
(line 258)
{
if (!$this->container->has('twig')) {
throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
}
return $this->container->get('twig')->render($view, $parameters);
}
/**
* Renders a view.
*/
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
renderView
(line 266)
/**
* Renders a view.
*/
protected function render(string $view, array $parameters = [], Response $response = null): Response
{
$content = $this->renderView($view, $parameters);
if (null === $response) {
$response = new Response();
}
AbstractController->render('front/sitemapLinks.html.twig', array())
in
src/Controller/FrontController.php
(line 349)
* }, name="front_sitemap_links")
*/
public function sitemapLinks(ManagerRegistry $managerRegistry, Request $request)
{
return $this->render('front/sitemapLinks.html.twig', array());
}
/**
* @Route({
* "fr": "/notre-equipe",
in
vendor/symfony/http-kernel/HttpKernel.php
->
sitemapLinks
(line 152)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 74)
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
$this->request = $request;
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
$response->send();
if ($this->kernel instanceof TerminableInterface) {
$this->kernel->terminate($this->request, $response);
}
in
vendor/autoload_runtime.php
->
run
(line 35)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/home/hlcdisb/www/facomia_dev/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
Symfony\Component\Routing\Exception\ InvalidParameterException
in
vendor/symfony/routing/Generator/UrlGenerator.php
(line 194)
if (!$optional || $important || !\array_key_exists($varName, $defaults) || (null !== $mergedParams[$varName] && (string) $mergedParams[$varName] !== (string) $defaults[$varName])) {
// check requirement (while ignoring look-around patterns)
if (null !== $this->strictRequirements && !preg_match('#^'.preg_replace('/\(\?(?:=|<=|!|<!)((?:[^()\\\\]+|\\\\.|\((?1)\))*)\)/', '', $token[2]).'$#i'.(empty($token[4]) ? '' : 'u'), $mergedParams[$token[3]] ?? '')) {
if ($this->strictRequirements) {
throw new InvalidParameterException(strtr($message, ['{parameter}' => $varName, '{route}' => $name, '{expected}' => $token[2], '{given}' => $mergedParams[$varName]]));
}
if ($this->logger) {
$this->logger->error($message, ['parameter' => $varName, 'route' => $name, 'expected' => $token[2], 'given' => $mergedParams[$varName]]);
}
in
vendor/symfony/routing/Generator/CompiledUrlGenerator.php
->
doGenerate
(line 67)
} elseif (!isset($parameters['_locale'])) {
$parameters['_locale'] = $defaults['_locale'];
}
}
return $this->doGenerate($variables, $defaults, $requirements, $tokens, $parameters, $name, $referenceType, $hostTokens, $requiredSchemes);
}
}
in
vendor/symfony/routing/Router.php
->
generate
(line 235)
/**
* {@inheritdoc}
*/
public function generate(string $name, array $parameters = [], int $referenceType = self::ABSOLUTE_PATH)
{
return $this->getGenerator()->generate($name, $parameters, $referenceType);
}
/**
* {@inheritdoc}
*/
Router->generate('front_product', array('catSlug' => 'the-chains', 'subCatSlug' => 'sheep-chain', 'slug' => null), 0)
in
src/Service/AppService.php
(line 241)
public function getProductUrl(Product $product)
{
$category = $product->getCategory() ?? ($product->getSubCategory() ? $product->getSubCategory()->getCategory() : null);
$subCategory = $product->getSubCategory();
return $this->router->generate("front_product", ["catSlug" => ($category ? $category->getSlug() : "0"), "subCatSlug" => ($subCategory ? $subCategory->getSlug() : "0"), "slug" => $product->getSlug()], UrlGeneratorInterface::ABSOLUTE_URL);
}
public function getCategoryUrl(Category $cat)
{
return $this->router->generate("front_products", ["catSlug" => ($cat ? $cat->getSlug() : "0")], UrlGeneratorInterface::ABSOLUTE_URL);
$links[] = $this->getCategoryUrl($cat);
}
}
$repoProduct = $this->em->getRepository(Product::class);
foreach ($repoProduct->findBy(["hide" => false]) as $key => $product) {
$links[] = $this->getProductUrl($product);
}
$repoPost = $this->em->getRepository(Post::class);
foreach ($repoPost->findAll() as $key => $post) {
$links[] = $this->router->generate('front_post', ["slug" => $post->getSlug()], UrlGeneratorInterface::ABSOLUTE_URL);
}
in
var/cache/dev/twig/4b/4b510a995d944cfff65d137b50a2d792fe2a374241e3ec732a8d951c21826577.php
->
getSitemapLinks
(line 76)
echo " <section class=\"container pay-70 container-custom\">
<ul>
";
// line 11
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable($this->extensions['App\Service\AppService']->getSitemapLinks());
foreach ($context['_seq'] as $context["key"] => $context["link"]) {
// line 12
echo " <li>
<a href=\"";
// line 13
in
vendor/twig/twig/src/Template.php
->
block_body
(line 171)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');
}
if (null !== $template) {
try {
$template->$block($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($template->getSourceContext());
}
in
var/cache/dev/twig/3a/3a6ddbfda1c6dbd559881f014b52374238fbf0dfde27f51181050702c04d1bce.php
->
displayBlock
(line 181)
// line 95
echo " ";
$this->displayBlock('navbar', $context, $blocks);
// line 113
echo " ";
$this->displayBlock('body', $context, $blocks);
// line 114
echo " ";
$this->displayBlock('footer', $context, $blocks);
// line 117
echo " <div class=\"position-fixed b-20 r-20 pointer scrollToTopDiv scrollToTop bgc-white pa-12\">
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 394)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
var/cache/dev/twig/4b/4b510a995d944cfff65d137b50a2d792fe2a374241e3ec732a8d951c21826577.php
->
display
(line 48)
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "front/sitemapLinks.html.twig"));
$this->parent = $this->loadTemplate("base.html.twig", "front/sitemapLinks.html.twig", 1);
$this->parent->display($context, array_merge($this->blocks, $blocks));
$__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
$__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 394)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
vendor/twig/twig/src/Template.php
->
display
(line 379)
ob_start();
} else {
ob_start(function () { return ''; });
}
try {
$this->display($context);
} catch (\Throwable $e) {
while (ob_get_level() > $level) {
ob_end_clean();
}
in
vendor/twig/twig/src/TemplateWrapper.php
->
render
(line 40)
public function render(array $context = []): string
{
// using func_get_args() allows to not expose the blocks argument
// as it should only be used by internal code
return $this->template->render($context, \func_get_args()[1] ?? []);
}
public function display(array $context = [])
{
// using func_get_args() allows to not expose the blocks argument
in
vendor/twig/twig/src/Environment.php
->
render
(line 277)
* @throws SyntaxError When an error occurred during compilation
* @throws RuntimeError When an error occurred during rendering
*/
public function render($name, array $context = []): string
{
return $this->load($name)->render($context);
}
/**
* Displays a template.
*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
render
(line 258)
{
if (!$this->container->has('twig')) {
throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
}
return $this->container->get('twig')->render($view, $parameters);
}
/**
* Renders a view.
*/
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
renderView
(line 266)
/**
* Renders a view.
*/
protected function render(string $view, array $parameters = [], Response $response = null): Response
{
$content = $this->renderView($view, $parameters);
if (null === $response) {
$response = new Response();
}
AbstractController->render('front/sitemapLinks.html.twig', array())
in
src/Controller/FrontController.php
(line 349)
* }, name="front_sitemap_links")
*/
public function sitemapLinks(ManagerRegistry $managerRegistry, Request $request)
{
return $this->render('front/sitemapLinks.html.twig', array());
}
/**
* @Route({
* "fr": "/notre-equipe",
in
vendor/symfony/http-kernel/HttpKernel.php
->
sitemapLinks
(line 152)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 74)
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
$this->request = $request;
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
$response->send();
if ($this->kernel instanceof TerminableInterface) {
$this->kernel->terminate($this->request, $response);
}
in
vendor/autoload_runtime.php
->
run
(line 35)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/home/hlcdisb/www/facomia_dev/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
Logs
Level | Channel | Message |
---|---|---|
INFO 22:45:18 | deprecation |
User Deprecated: The Liip\ImagineBundle\Templating\FilterTrait trait is deprecated since version 2.7 and will be removed in 3.0; use Twig instead. { "exception": {} } |
INFO 22:45:18 | deprecation |
User Deprecated: The Liip\ImagineBundle\Templating\FilterExtension class is deprecated since version 2.7 and will be removed in 3.0; configure "liip_imagine.twig.mode" to "lazy" instead. { "exception": {} } |
DEBUG 22:45:18 | php |
Warning: Zend OPcache API is restricted by "restrict_api" configuration directive { "exception": { "severity": 2, "file": "/home/hlcdisb/www/facomia_dev/vendor/symfony/error-handler/DebugClassLoader.php", "line": 280, "trace": [ { "function": "loadClass", "class": "Symfony\\Component\\ErrorHandler\\DebugClassLoader", "type": "->" } ], "count": 62 } } |
INFO 22:45:18 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "ad803e" }, "request_uri": "http://www.facomia.asb-digital.fr/_profiler/ad803e?panel=exception", "method": "GET" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::handleLegacyEaContext". { "event": "kernel.request", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::handleLegacyEaContext" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". { "event": "kernel.controller", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 22:45:18 | 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 22:45:18 | 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 22:45:18 | 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 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::handleLegacyEaContext". { "event": "kernel.request", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::handleLegacyEaContext" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". { "event": "kernel.controller", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 22:45:18 | 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 22:45:18 | 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 22:45:18 | 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 22:45:18 | 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 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 22:45:18 | 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 22:45:18 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". { "event": "kernel.response", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse" } |
DEBUG 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 22:45:18 | 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 22:45:18 | 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 22:45:18 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 22:45:18 | 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 22:45:18 | 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 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::handleLegacyEaContext". { "event": "kernel.request", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::handleLegacyEaContext" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". { "event": "kernel.controller", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 22:45:18 | 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 22:45:18 | 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 22:45:18 | 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 22:45:18 | 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 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse" } |
DEBUG 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 22:45:18 | 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 22:45:18 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". { "event": "kernel.response", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse" } |
DEBUG 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 22:45:18 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 22:45:18 | 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 22:45:18 | 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 22:45:18 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". { "event": "kernel.finish_request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". { "event": "kernel.finish_request", "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets" } |
DEBUG 22:45:18 | 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 22:45:18 | 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 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::handleLegacyEaContext". { "event": "kernel.request", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::handleLegacyEaContext" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". { "event": "kernel.controller", "listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 22:45:18 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 22:45:18 | 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 22:45:18 | 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 22:45:18 | 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]
RuntimeError
|
---|
Twig\Error\RuntimeError: An exception has been thrown during the rendering of a template ("Parameter "slug" for route "front_product.en" must match "[^/]++" ("" given) to generate a corresponding URL."). at templates/front/sitemapLinks.html.twig:11 at Twig\Template->displayBlock('body', array('app' => object(AppVariable), 'recaptchaSiteKey' => '6LcF5gAkAAAAADDkf1rwh06517tet2PJXeN1ynC4', 'siteTitle' => 'Facomia', 'managedLocales' => array('fr', 'en'), 'page' => null, 'metaColor' => '#15683A', 'googleAnalytic' => null, 'googleSearchConsole' => null), array('metaTags' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_metaTags'), 'stylesheets' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_stylesheets'), 'body_tag' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_body_tag'), 'flash' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_flash'), 'navbar' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_navbar'), 'body' => array(object(__TwigTemplate_952df8888aa823538d72b6115577a62a02553834b79d31f1af6fae736a037367), 'block_body'), 'footer' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_javascripts'))) (var/cache/dev/twig/3a/3a6ddbfda1c6dbd559881f014b52374238fbf0dfde27f51181050702c04d1bce.php:181) at __TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c->doDisplay(array('app' => object(AppVariable), 'recaptchaSiteKey' => '6LcF5gAkAAAAADDkf1rwh06517tet2PJXeN1ynC4', 'siteTitle' => 'Facomia', 'managedLocales' => array('fr', 'en'), 'page' => null, 'metaColor' => '#15683A', 'googleAnalytic' => null, 'googleSearchConsole' => null), array('metaTags' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_metaTags'), 'stylesheets' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_stylesheets'), 'body_tag' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_body_tag'), 'flash' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_flash'), 'navbar' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_navbar'), 'body' => array(object(__TwigTemplate_952df8888aa823538d72b6115577a62a02553834b79d31f1af6fae736a037367), 'block_body'), 'footer' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_javascripts'))) (vendor/twig/twig/src/Template.php:394) at Twig\Template->displayWithErrorHandling(array('app' => object(AppVariable), 'recaptchaSiteKey' => '6LcF5gAkAAAAADDkf1rwh06517tet2PJXeN1ynC4', 'siteTitle' => 'Facomia', 'managedLocales' => array('fr', 'en')), array('metaTags' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_metaTags'), 'stylesheets' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_stylesheets'), 'body_tag' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_body_tag'), 'flash' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_flash'), 'navbar' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_navbar'), 'body' => array(object(__TwigTemplate_952df8888aa823538d72b6115577a62a02553834b79d31f1af6fae736a037367), 'block_body'), 'footer' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_javascripts'))) (vendor/twig/twig/src/Template.php:367) at Twig\Template->display(array('app' => object(AppVariable), 'recaptchaSiteKey' => '6LcF5gAkAAAAADDkf1rwh06517tet2PJXeN1ynC4', 'siteTitle' => 'Facomia', 'managedLocales' => array('fr', 'en')), array('body' => array(object(__TwigTemplate_952df8888aa823538d72b6115577a62a02553834b79d31f1af6fae736a037367), 'block_body'))) (var/cache/dev/twig/4b/4b510a995d944cfff65d137b50a2d792fe2a374241e3ec732a8d951c21826577.php:48) at __TwigTemplate_952df8888aa823538d72b6115577a62a02553834b79d31f1af6fae736a037367->doDisplay(array('app' => object(AppVariable), 'recaptchaSiteKey' => '6LcF5gAkAAAAADDkf1rwh06517tet2PJXeN1ynC4', 'siteTitle' => 'Facomia', 'managedLocales' => array('fr', 'en')), array('body' => array(object(__TwigTemplate_952df8888aa823538d72b6115577a62a02553834b79d31f1af6fae736a037367), 'block_body'))) (vendor/twig/twig/src/Template.php:394) at Twig\Template->displayWithErrorHandling(array('app' => object(AppVariable), 'recaptchaSiteKey' => '6LcF5gAkAAAAADDkf1rwh06517tet2PJXeN1ynC4', 'siteTitle' => 'Facomia', 'managedLocales' => array('fr', 'en')), array('body' => array(object(__TwigTemplate_952df8888aa823538d72b6115577a62a02553834b79d31f1af6fae736a037367), 'block_body'))) (vendor/twig/twig/src/Template.php:367) at Twig\Template->display(array()) (vendor/twig/twig/src/Template.php:379) at Twig\Template->render(array(), array()) (vendor/twig/twig/src/TemplateWrapper.php:40) at Twig\TemplateWrapper->render(array()) (vendor/twig/twig/src/Environment.php:277) at Twig\Environment->render('front/sitemapLinks.html.twig', array()) (vendor/symfony/framework-bundle/Controller/AbstractController.php:258) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('front/sitemapLinks.html.twig', array()) (vendor/symfony/framework-bundle/Controller/AbstractController.php:266) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('front/sitemapLinks.html.twig', array()) (src/Controller/FrontController.php:349) at App\Controller\FrontController->sitemapLinks(object(Registry), object(Request)) (vendor/symfony/http-kernel/HttpKernel.php:152) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:74) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:35) at require_once('/home/hlcdisb/www/facomia_dev/vendor/autoload_runtime.php') (public/index.php:5) |
[1/2]
InvalidParameterException
|
---|
Symfony\Component\Routing\Exception\InvalidParameterException: Parameter "slug" for route "front_product.en" must match "[^/]++" ("" given) to generate a corresponding URL. at vendor/symfony/routing/Generator/UrlGenerator.php:194 at Symfony\Component\Routing\Generator\UrlGenerator->doGenerate(array('catSlug' => 0, 'subCatSlug' => 1, 'slug' => 2), array('_controller' => 'App\\Controller\\FrontController::product', '_locale' => 'en', '_canonical_route' => 'front_product'), array(), array(array('variable', '/', '[^/]++', 'slug', true), array('variable', '/', '[^/]++', 'subCatSlug', true), array('variable', '/', '[^/]++', 'catSlug', true), array('text', '/en/product')), array('catSlug' => 'the-chains', 'subCatSlug' => 'sheep-chain', 'slug' => null), 'front_product.en', 0, array(), array()) (vendor/symfony/routing/Generator/CompiledUrlGenerator.php:67) at Symfony\Component\Routing\Generator\CompiledUrlGenerator->generate('front_product.en', array('catSlug' => 'the-chains', 'subCatSlug' => 'sheep-chain', 'slug' => null), 0) (vendor/symfony/routing/Router.php:235) at Symfony\Component\Routing\Router->generate('front_product', array('catSlug' => 'the-chains', 'subCatSlug' => 'sheep-chain', 'slug' => null), 0) (src/Service/AppService.php:241) at App\Service\AppService->getProductUrl(object(Product)) (src/Service/AppService.php:396) at App\Service\AppService->getSitemapLinks() (var/cache/dev/twig/4b/4b510a995d944cfff65d137b50a2d792fe2a374241e3ec732a8d951c21826577.php:76) at __TwigTemplate_952df8888aa823538d72b6115577a62a02553834b79d31f1af6fae736a037367->block_body(array('app' => object(AppVariable), 'recaptchaSiteKey' => '6LcF5gAkAAAAADDkf1rwh06517tet2PJXeN1ynC4', 'siteTitle' => 'Facomia', 'managedLocales' => array('fr', 'en'), 'page' => null, 'metaColor' => '#15683A', 'googleAnalytic' => null, 'googleSearchConsole' => null, '_parent' => array('app' => object(AppVariable), 'recaptchaSiteKey' => '6LcF5gAkAAAAADDkf1rwh06517tet2PJXeN1ynC4', 'siteTitle' => 'Facomia', 'managedLocales' => array('fr', 'en'), 'page' => null, 'metaColor' => '#15683A', 'googleAnalytic' => null, 'googleSearchConsole' => null)), array('metaTags' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_metaTags'), 'stylesheets' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_stylesheets'), 'body_tag' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_body_tag'), 'flash' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_flash'), 'navbar' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_navbar'), 'body' => array(object(__TwigTemplate_952df8888aa823538d72b6115577a62a02553834b79d31f1af6fae736a037367), 'block_body'), 'footer' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_javascripts'))) (vendor/twig/twig/src/Template.php:171) at Twig\Template->displayBlock('body', array('app' => object(AppVariable), 'recaptchaSiteKey' => '6LcF5gAkAAAAADDkf1rwh06517tet2PJXeN1ynC4', 'siteTitle' => 'Facomia', 'managedLocales' => array('fr', 'en'), 'page' => null, 'metaColor' => '#15683A', 'googleAnalytic' => null, 'googleSearchConsole' => null), array('metaTags' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_metaTags'), 'stylesheets' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_stylesheets'), 'body_tag' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_body_tag'), 'flash' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_flash'), 'navbar' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_navbar'), 'body' => array(object(__TwigTemplate_952df8888aa823538d72b6115577a62a02553834b79d31f1af6fae736a037367), 'block_body'), 'footer' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_javascripts'))) (var/cache/dev/twig/3a/3a6ddbfda1c6dbd559881f014b52374238fbf0dfde27f51181050702c04d1bce.php:181) at __TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c->doDisplay(array('app' => object(AppVariable), 'recaptchaSiteKey' => '6LcF5gAkAAAAADDkf1rwh06517tet2PJXeN1ynC4', 'siteTitle' => 'Facomia', 'managedLocales' => array('fr', 'en'), 'page' => null, 'metaColor' => '#15683A', 'googleAnalytic' => null, 'googleSearchConsole' => null), array('metaTags' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_metaTags'), 'stylesheets' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_stylesheets'), 'body_tag' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_body_tag'), 'flash' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_flash'), 'navbar' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_navbar'), 'body' => array(object(__TwigTemplate_952df8888aa823538d72b6115577a62a02553834b79d31f1af6fae736a037367), 'block_body'), 'footer' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_javascripts'))) (vendor/twig/twig/src/Template.php:394) at Twig\Template->displayWithErrorHandling(array('app' => object(AppVariable), 'recaptchaSiteKey' => '6LcF5gAkAAAAADDkf1rwh06517tet2PJXeN1ynC4', 'siteTitle' => 'Facomia', 'managedLocales' => array('fr', 'en')), array('metaTags' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_metaTags'), 'stylesheets' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_stylesheets'), 'body_tag' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_body_tag'), 'flash' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_flash'), 'navbar' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_navbar'), 'body' => array(object(__TwigTemplate_952df8888aa823538d72b6115577a62a02553834b79d31f1af6fae736a037367), 'block_body'), 'footer' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_c04ea0871e3e3ae37273cce95cf3fb4ddb89fe977da6f77379c4ab208aff7d5c), 'block_javascripts'))) (vendor/twig/twig/src/Template.php:367) at Twig\Template->display(array('app' => object(AppVariable), 'recaptchaSiteKey' => '6LcF5gAkAAAAADDkf1rwh06517tet2PJXeN1ynC4', 'siteTitle' => 'Facomia', 'managedLocales' => array('fr', 'en')), array('body' => array(object(__TwigTemplate_952df8888aa823538d72b6115577a62a02553834b79d31f1af6fae736a037367), 'block_body'))) (var/cache/dev/twig/4b/4b510a995d944cfff65d137b50a2d792fe2a374241e3ec732a8d951c21826577.php:48) at __TwigTemplate_952df8888aa823538d72b6115577a62a02553834b79d31f1af6fae736a037367->doDisplay(array('app' => object(AppVariable), 'recaptchaSiteKey' => '6LcF5gAkAAAAADDkf1rwh06517tet2PJXeN1ynC4', 'siteTitle' => 'Facomia', 'managedLocales' => array('fr', 'en')), array('body' => array(object(__TwigTemplate_952df8888aa823538d72b6115577a62a02553834b79d31f1af6fae736a037367), 'block_body'))) (vendor/twig/twig/src/Template.php:394) at Twig\Template->displayWithErrorHandling(array('app' => object(AppVariable), 'recaptchaSiteKey' => '6LcF5gAkAAAAADDkf1rwh06517tet2PJXeN1ynC4', 'siteTitle' => 'Facomia', 'managedLocales' => array('fr', 'en')), array('body' => array(object(__TwigTemplate_952df8888aa823538d72b6115577a62a02553834b79d31f1af6fae736a037367), 'block_body'))) (vendor/twig/twig/src/Template.php:367) at Twig\Template->display(array()) (vendor/twig/twig/src/Template.php:379) at Twig\Template->render(array(), array()) (vendor/twig/twig/src/TemplateWrapper.php:40) at Twig\TemplateWrapper->render(array()) (vendor/twig/twig/src/Environment.php:277) at Twig\Environment->render('front/sitemapLinks.html.twig', array()) (vendor/symfony/framework-bundle/Controller/AbstractController.php:258) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('front/sitemapLinks.html.twig', array()) (vendor/symfony/framework-bundle/Controller/AbstractController.php:266) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('front/sitemapLinks.html.twig', array()) (src/Controller/FrontController.php:349) at App\Controller\FrontController->sitemapLinks(object(Registry), object(Request)) (vendor/symfony/http-kernel/HttpKernel.php:152) at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1) (vendor/symfony/http-kernel/HttpKernel.php:74) at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true) (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle(object(Request)) (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35) at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run() (vendor/autoload_runtime.php:35) at require_once('/home/hlcdisb/www/facomia_dev/vendor/autoload_runtime.php') (public/index.php:5) |