http://dev.az.vp.vpauto.fr/vehicule/liste

Exceptions

Key "vehiculedetourisme" does not exist as the array is empty.

Exception

Twig\Error\ RuntimeError

  1.                     <div class="prelative" data-field="category">
  2.                         <ul>
  3.                             <li class="elmt-onglet-vehicule">
  4.                                 <i class="icon-tourisme"></i>
  5.                                 <label>{{ 'frontend.search.form.category.tourism'|trans }}</label>
  6.                                 <span class="input-checkbox03"><input type="checkbox" value="{{ categories.vehiculedetourisme }}" name="" {{ macros.isChecked(categories.vehiculedetourisme, form_values) }}></span>
  7.                             </li>
  8.                             <li class="elmt-onglet-vehicule">
  9.                                 <i class="icon-utilitaire"></i>
  10.                                 <label>{{ 'frontend.search.form.category.utility'|trans }}</label>
  11.                                 <span class="input-checkbox03"><input type="checkbox" value="{{ categories.utilitaire }}" name="" {{ macros.isChecked(categories.utilitaire, form_values) }}></span>
  1.         // line 50
  2.         echo twig_escape_filter($this->env$this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("frontend.search.form.category.tourism"), "html"nulltrue);
  3.         echo "</label>
  4.                                 <span class=\"input-checkbox03\"><input type=\"checkbox\" value=\"";
  5.         // line 51
  6.         echo twig_escape_filter($this->envtwig_get_attribute($this->env$this->source, (isset($context["categories"]) || array_key_exists("categories"$context) ? $context["categories"] : (function () { throw new RuntimeError('Variable "categories" does not exist.'51$this->source); })()), "vehiculedetourisme", [], "any"falsefalsefalse51), "html"nulltrue);
  7.         echo "\" name=\"\" ";
  8.         echo twig_call_macro($macros["macros"], "macro_isChecked", [twig_get_attribute($this->env$this->source, (isset($context["categories"]) || array_key_exists("categories"$context) ? $context["categories"] : (function () { throw new RuntimeError('Variable "categories" does not exist.'51$this->source); })()), "vehiculedetourisme", [], "any"falsefalsefalse51), (isset($context["form_values"]) || array_key_exists("form_values"$context) ? $context["form_values"] : (function () { throw new RuntimeError('Variable "form_values" does not exist.'51$this->source); })())], 51$context$this->getSourceContext());
  9.         echo "></span>
  10.                             </li>
  11.                             <li class=\"elmt-onglet-vehicule\">
in vendor/twig/twig/src/Template.php -> doDisplay (line 405)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 378)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php -> display (line 390)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      */
  2.     public function render(array $context = []): string
  3.     {
  4.         // using func_get_args() allows to not expose the blocks argument
  5.         // as it should only be used by internal code
  6.         return $this->template->render($context\func_get_args()[1] ?? []);
  7.     }
  8.     /**
  9.      * Displays the template.
  10.      *
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = [])
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     {
  2.         if (!$this->container->has('twig')) {
  3.             throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      */
  1.     /**
  2.      * Renders a view.
  3.      */
  4.     protected function render(string $view, array $parameters = [], ?Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         if (null === $response) {
  8.             $response = new Response();
  9.         }
AbstractController->render('/Frontend/search.html.twig', array('freesearch_form' => object(FormView), 'search_form' => object(FormView), 'categories' => array(), 'form_values' => array(), 'form_type' => 0)) in src/Controller/Frontend/VehicleController.php (line 390)
  1.         foreach ($categories as $key => $category) {
  2.             $categories[$category->getNameCanonical()] = $category->getId();
  3.             unset($categories[$key]);
  4.         }
  5.         return $this->render('/Frontend/search.html.twig', [
  6.             'freesearch_form' => $this->formFactory->create(VehicleFreeSearchType::class)->createView(),
  7.             'search_form' => $this->getSearchForm($request->getSession()->get('form_values', []), ['form_type' => $formType])->createView(),
  8.             'categories' => $categories,
  9.             'form_values' => $this->session->get('form_values'),
  10.             'form_type' => $formType,
in vendor/symfony/http-kernel/HttpKernel.php -> searchAction (line 163)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         if (!IpUtils::checkIp('127.0.0.1'$trustedProxies)) {
  2.             Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
  3.         }
  4.         try {
  5.             return $kernel->handle($request$type$catch);
  6.         } finally {
  7.             // restore global state
  8.             Request::setTrustedProxies($trustedProxies$trustedHeaderSet);
  9.         }
  10.     }
  1.             $subRequest->attributes->add($reference->attributes);
  2.         }
  3.         $level ob_get_level();
  4.         try {
  5.             return SubRequestHandler::handle($this->kernel$subRequestHttpKernelInterface::SUB_REQUESTfalse);
  6.         } catch (\Exception $e) {
  7.             // we dispatch the exception event to trigger the logging
  8.             // the response that comes back is ignored
  9.             if (isset($options['ignore_errors']) && $options['ignore_errors'] && $this->dispatcher) {
  10.                 $event = new ExceptionEvent($this->kernel$requestHttpKernelInterface::SUB_REQUEST$e);
  1.         if (!$request $this->requestStack->getCurrentRequest()) {
  2.             throw new \LogicException('Rendering a fragment can only be done when handling a Request.');
  3.         }
  4.         return $this->deliver($this->renderers[$renderer]->render($uri$request$options));
  5.     }
  6.     /**
  7.      * Delivers the Response as a string.
  8.      *
  1.         if (!isset($this->initialized[$renderer]) && $this->container->has($renderer)) {
  2.             $this->addRenderer($this->container->get($renderer));
  3.             $this->initialized[$renderer] = true;
  4.         }
  5.         return parent::render($uri$renderer$options);
  6.     }
  7. }
  1.     public function renderFragment($uri, array $options = []): string
  2.     {
  3.         $strategy $options['strategy'] ?? 'inline';
  4.         unset($options['strategy']);
  5.         return $this->handler->render($uri$strategy$options);
  6.     }
  7.     /**
  8.      * Renders a fragment.
  9.      *
  1. </div>
  2. <div class=\"col3x list-vehicle\">
  3.     ";
  4.         // line 61
  5.         echo $this->env->getRuntime('Symfony\Bridge\Twig\Extension\HttpKernelRuntime')->renderFragment(Symfony\Bridge\Twig\Extension\HttpKernelExtension::controller("App\\Controller\\Frontend\\VehicleController:searchAction"));
  6.         echo "
  7. </div>
  8. ";
  9.         
  10.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> block_body_content (line 182)
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1.         // line 14
  2.         $this->displayBlock('additional_classes'$context$blocks);
  3.         echo "\">
  4.     ";
  5.         // line 15
  6.         $this->displayBlock('body_content'$context$blocks);
  7.         // line 16
  8.         echo "</div>
  9. <!--MIDDLE CONTENT SECTION ENDS HERE-->
  10. ";
in vendor/twig/twig/src/Template.php -> block_layout_content (line 182)
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1.     ";
  2.         // line 227
  3.         $this->loadTemplate("flash/flash.html.twig""base_frontend.html.twig"227)->display($context);
  4.         // line 228
  5.         echo "    ";
  6.         $this->displayBlock('layout_content'$context$blocks);
  7.         // line 229
  8.         echo "</div>
  9. ";
  10.         // line 230
  11.         $this->displayBlock('javascripts'$context$blocks);
in vendor/twig/twig/src/Template.php -> doDisplay (line 405)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 378)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  2.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""frontend/frontend.html.twig"));
  3.         $this->parent $this->loadTemplate("base_frontend.html.twig""frontend/frontend.html.twig"1);
  4.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  5.         
  6.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  7.         
  8.         $__internal_b91a4435ea3baf1e2b6bfda56133dace->leave($__internal_b91a4435ea3baf1e2b6bfda56133dace_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 405)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 378)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.         // line 3
  2.         $macros["macros"] = $this->macros["macros"] = $this->loadTemplate("/Frontend/macros.html.twig""Frontend/vehicle/index.html.twig"3)->unwrap();
  3.         // line 1
  4.         $this->parent $this->loadTemplate("frontend/frontend.html.twig""Frontend/vehicle/index.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.         
  7.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  8.         
  9.         $__internal_b91a4435ea3baf1e2b6bfda56133dace->leave($__internal_b91a4435ea3baf1e2b6bfda56133dace_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 405)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 378)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php -> display (line 390)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      */
  2.     public function render(array $context = []): string
  3.     {
  4.         // using func_get_args() allows to not expose the blocks argument
  5.         // as it should only be used by internal code
  6.         return $this->template->render($context\func_get_args()[1] ?? []);
  7.     }
  8.     /**
  9.      * Displays the template.
  10.      *
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = [])
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     {
  2.         if (!$this->container->has('twig')) {
  3.             throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      */
  1.     /**
  2.      * Renders a view.
  3.      */
  4.     protected function render(string $view, array $parameters = [], ?Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         if (null === $response) {
  8.             $response = new Response();
  9.         }
AbstractController->render('Frontend/vehicle/index.html.twig', array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array())) in src/Controller/Frontend/VehicleController.php (line 213)
  1.             if ($dates['max_closedAt'] != $dates['min_closedAt']) {
  2.                 $datesForCurrentSale = ['max_closedAt' => new \DateTime($dates['max_closedAt']), 'min_closedAt' => new \DateTime($dates['min_closedAt'])];
  3.             }
  4.         }
  5.         return $this->render('Frontend/vehicle/index.html.twig', [
  6.             'pager' => $pager,
  7.             'nbVehiclesSales' => $nbVehiclesSales,
  8.             'sales' => $sales,
  9.             'currentSale' => $currentSale,
  10.             'currentEvent' => $currentEvent,
in vendor/symfony/http-kernel/HttpKernel.php -> indexAction (line 163)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  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(object(Request)) in public/index.php (line 30)
  1.     Request::setTrustedHosts([$trustedHosts]);
  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 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: The service "ApiPlatform\Core\Api\IdentifiersExtractor" is deprecated, use ApiPlatform\Api\IdentifiersExtractor instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: The listener "ApiPlatform\Core\EventListener\ReadListener" is deprecated and will be replaced by "ApiPlatform\Symfony\EventListener\ReadListener" in 3.0.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-core 5.4: Not setting the 5th argument of "Symfony\Component\Security\Core\Authorization\AuthorizationChecker::__construct" to "false" is deprecated.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Using "api_platform.iri_converter.legacy" is deprecated since API Platform 2.7. Use "ApiPlatform\Api\IriConverterInterface" instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use an implementation of "ApiPlatform\Api\IriConverterInterface" instead of "ApiPlatform\Core\Api\IriConverterInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since api-platform/core 2.7: Use "ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface" instead of "ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface".
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.factory.service" service is deprecated, use "session.storage.factory.native", "session.storage.factory.php_bridge" or "session.storage.factory.mock_file" instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.metadata_bag" service is deprecated, create your own "session.storage.factory" instead.
{
    "exception": {}
}
INFO 06:16:19 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "http://dev.az.vp.vpauto.fr/_profiler/latest?ip=100.100.0.135",
    "method": "GET"
}
INFO 06:16:19 php User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\EntryPoint\FormAuthenticationEntryPoint" class is deprecated, use the new security system with "Symfony\Component\Security\Http\Authenticator\FormLoginAuthenticator" instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\RememberMe\RememberMeServicesInterface" interface is deprecated, use "Symfony\Component\Security\Http\RememberMe\RememberMeHandlerInterface" instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\RememberMe\AbstractRememberMeServices" class is deprecated, use "Symfony\Component\Security\Http\RememberMe\AbstractRememberMeHandler" instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\RememberMe\TokenBasedRememberMeServices" class is deprecated, use "Symfony\Component\Security\Http\RememberMe\SignatureRememberMeHandler" instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-http 5.4: Method "Symfony\Component\Security\Http\Firewall\ContextListener::setRememberMeServices()" is deprecated, use the new remember me handlers instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.guard.main" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.guard_handler" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-guard 5.3: The "Symfony\Component\Security\Guard\GuardAuthenticatorHandler" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.manager" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\AuthenticationProviderManager" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Event\AuthenticationFailureEvent" class is deprecated, use "Symfony\Component\Security\Http\Event\LoginFailureEvent" with the new authenticator system instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-guard 5.3: The "Symfony\Component\Security\Guard\Firewall\GuardAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
DEBUG 06:16:19 security Checking for guard authentication credentials.
{
    "firewall_key": "main",
    "authenticators": 1
}
DEBUG 06:16:19 security Checking support on guard authenticator.
{
    "firewall_key": "main",
    "authenticator": "App\\Security\\ADTokenAuthenticator"
}
DEBUG 06:16:19 security Guard authenticator does not support the request.
{
    "firewall_key": "main",
    "authenticator": "App\\Security\\ADTokenAuthenticator"
}
INFO 06:16:19 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.form.main" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\UsernamePasswordFormAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AbstractAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.rememberme.main" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\RememberMeListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.anonymous.main" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AnonymousAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" class is deprecated.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-core 5.4: Using an object that is not an instance of "Symfony\Component\Security\Core\User\UserInterface" as $user in "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" is deprecated.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AuthenticationProviderInterface" interface is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.anonymous.oauth_authorize" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AnonymousAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 06:16:19 security Populated the TokenStorage with an anonymous Token.
INFO 06:16:19 php User Deprecated: Since symfony/security-http 5.4: The $authManager argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" is deprecated.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-http 5.4: Not setting the $exceptionOnNoToken argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" to "false" is deprecated.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolver::isAnonymous()" method is deprecated, use "isAuthenticated()" or "isFullFledged()" if you want to check if the request is (fully) authenticated.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-core 5.4: The "IS_AUTHENTICATED_ANONYMOUSLY" security attribute is deprecated, use "PUBLIC_ACCESS" for public resources, otherwise use "IS_AUTHENTICATED" or "IS_AUTHENTICATED_FULLY" instead if you want to check if the request is (fully) authenticated.
{
    "exception": {}
}
INFO 06:16:19 php User Deprecated: Since symfony/security-bundle 5.4: Setting the $authenticatorManagerEnabled argument of "Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct" to "false" is deprecated, use the new authenticator system instead.
{
    "exception": {}
}

Stack Trace

RuntimeError
Twig\Error\RuntimeError:
Key "vehiculedetourisme" does not exist as the array is empty.

  at src/Resources/views/Frontend/search.html.twig:51
  at twig_get_attribute(object(Environment), object(Source), array(), 'vehiculedetourisme', array(), 'any', false, false, false, 51)
     (var/cache/dev/fr/vpauto/twig/f4/f48467aacc0b727d6d4fe312a19fe1c3.php:134)
  at __TwigTemplate_0d96756b33661af444ccf383d9033078->doDisplay(array('freesearch_form' => object(FormView), 'search_form' => object(FormView), 'categories' => array(), 'form_values' => array(), 'form_type' => 0, 'app' => object(AppVariable), 'disablemultilanguages' => true, 'js_server' => 'http://172.17.0.1:8800', 'default_locale' => 'fr', 'salesforce_base_url' => 'http://wiremock:8080/', 'socket_server_public_url' => 'http://vpauto.live.jit.su:80', 'sentry_dsn' => '', 'allowed_locales' => array('fr', 'de', 'en', 'es', 'hu', 'it', 'pl', 'pt', 'ro', 'nl'), 'current_country' => 'fr', 'countries_domain' => array('de' => 'localhost:8485', 'be' => 'localhost:8489', 'es' => 'localhost:8484', 'fr' => 'localhost:8443', 'en' => 'localhost:8491', 'it' => 'localhost:8482', 'nl' => 'localhost:8490', 'pl' => 'localhost:8486', 'pt' => 'localhost:8481', 'ro' => 'localhost:8488'), 'sell_my_auto_url' => 'https://vendresonauto.com', 'vpauto_report_email_authorized' => 'vpauto.fr|vpauto.eu|vo360.eu', 'azure_maps_url' => 'https://atlas.microsoft.com', 'azure_maps_key' => 'F2YVrXncEAoPK9eoaIFIyYzaNrvkaei-4zepOgFyIQw', 'rudderstack_key' => '2RC3rqGjwQwnEPKuA8fmULJG0Bd', 'rudderstack_dataplane_url' => 'https://scorpultinmwpp.dataplane.rudderstack.com', 'customer_portal_url' => 'https://customer-portal-backoffice-int.azurewebsites.net', 'master_request' => false), array())
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling(array('freesearch_form' => object(FormView), 'search_form' => object(FormView), 'categories' => array(), 'form_values' => array(), 'form_type' => 0, 'app' => object(AppVariable), 'disablemultilanguages' => true, 'js_server' => 'http://172.17.0.1:8800', 'default_locale' => 'fr', 'salesforce_base_url' => 'http://wiremock:8080/', 'socket_server_public_url' => 'http://vpauto.live.jit.su:80', 'sentry_dsn' => '', 'allowed_locales' => array('fr', 'de', 'en', 'es', 'hu', 'it', 'pl', 'pt', 'ro', 'nl'), 'current_country' => 'fr', 'countries_domain' => array('de' => 'localhost:8485', 'be' => 'localhost:8489', 'es' => 'localhost:8484', 'fr' => 'localhost:8443', 'en' => 'localhost:8491', 'it' => 'localhost:8482', 'nl' => 'localhost:8490', 'pl' => 'localhost:8486', 'pt' => 'localhost:8481', 'ro' => 'localhost:8488'), 'sell_my_auto_url' => 'https://vendresonauto.com', 'vpauto_report_email_authorized' => 'vpauto.fr|vpauto.eu|vo360.eu', 'azure_maps_url' => 'https://atlas.microsoft.com', 'azure_maps_key' => 'F2YVrXncEAoPK9eoaIFIyYzaNrvkaei-4zepOgFyIQw', 'rudderstack_key' => '2RC3rqGjwQwnEPKuA8fmULJG0Bd', 'rudderstack_dataplane_url' => 'https://scorpultinmwpp.dataplane.rudderstack.com', 'customer_portal_url' => 'https://customer-portal-backoffice-int.azurewebsites.net', 'master_request' => false), array())
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display(array('freesearch_form' => object(FormView), 'search_form' => object(FormView), 'categories' => array(), 'form_values' => array(), 'form_type' => 0))
     (vendor/twig/twig/src/Template.php:390)
  at Twig\Template->render(array('freesearch_form' => object(FormView), 'search_form' => object(FormView), 'categories' => array(), 'form_values' => array(), 'form_type' => 0), array())
     (vendor/twig/twig/src/TemplateWrapper.php:45)
  at Twig\TemplateWrapper->render(array('freesearch_form' => object(FormView), 'search_form' => object(FormView), 'categories' => array(), 'form_values' => array(), 'form_type' => 0))
     (vendor/twig/twig/src/Environment.php:318)
  at Twig\Environment->render('/Frontend/search.html.twig', array('freesearch_form' => object(FormView), 'search_form' => object(FormView), 'categories' => array(), 'form_values' => array(), 'form_type' => 0))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('/Frontend/search.html.twig', array('freesearch_form' => object(FormView), 'search_form' => object(FormView), 'categories' => array(), 'form_values' => array(), 'form_type' => 0))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('/Frontend/search.html.twig', array('freesearch_form' => object(FormView), 'search_form' => object(FormView), 'categories' => array(), 'form_values' => array(), 'form_type' => 0))
     (src/Controller/Frontend/VehicleController.php:390)
  at App\Controller\Frontend\VehicleController->searchAction(object(Request), object(CategoryRepository), 0)
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 2)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 2, false)
     (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(HttpKernel), object(Request), 2, false)
     (vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php:80)
  at Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer->render('/_fragment?_path=_format%3Dhtml%26_locale%3Dfr%26_controller%3DApp%255CController%255CFrontend%255CVehicleController%253AsearchAction', object(Request), array('ignore_errors' => false))
     (vendor/symfony/http-kernel/Fragment/FragmentHandler.php:85)
  at Symfony\Component\HttpKernel\Fragment\FragmentHandler->render(object(ControllerReference), 'inline', array('ignore_errors' => false))
     (vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php:49)
  at Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler->render(object(ControllerReference), 'inline', array())
     (vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php:46)
  at Symfony\Bridge\Twig\Extension\HttpKernelRuntime->renderFragment(object(ControllerReference))
     (var/cache/dev/fr/vpauto/twig/6f/6fc74592d56565c8955f3d366bc5bc9a.php:292)
  at __TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97->block_body_content(array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array(), 'app' => object(AppVariable), 'disablemultilanguages' => true, 'js_server' => 'http://172.17.0.1:8800', 'default_locale' => 'fr', 'salesforce_base_url' => 'http://wiremock:8080/', 'socket_server_public_url' => 'http://vpauto.live.jit.su:80', 'sentry_dsn' => '', 'allowed_locales' => array('fr', 'de', 'en', 'es', 'hu', 'it', 'pl', 'pt', 'ro', 'nl'), 'current_country' => 'fr', 'countries_domain' => array('de' => 'localhost:8485', 'be' => 'localhost:8489', 'es' => 'localhost:8484', 'fr' => 'localhost:8443', 'en' => 'localhost:8491', 'it' => 'localhost:8482', 'nl' => 'localhost:8490', 'pl' => 'localhost:8486', 'pt' => 'localhost:8481', 'ro' => 'localhost:8488'), 'sell_my_auto_url' => 'https://vendresonauto.com', 'vpauto_report_email_authorized' => 'vpauto.fr|vpauto.eu|vo360.eu', 'azure_maps_url' => 'https://atlas.microsoft.com', 'azure_maps_key' => 'F2YVrXncEAoPK9eoaIFIyYzaNrvkaei-4zepOgFyIQw', 'rudderstack_key' => '2RC3rqGjwQwnEPKuA8fmULJG0Bd', 'rudderstack_dataplane_url' => 'https://scorpultinmwpp.dataplane.rudderstack.com', 'customer_portal_url' => 'https://customer-portal-backoffice-int.azurewebsites.net', 'master_request' => true), array('meta_keywords' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_keywords'), 'meta_desc' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_desc'), 'meta_robot' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_robot'), 'meta_adaptime' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_adaptime'), 'meta_social' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_social'), 'meta_title' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_title'), 'stylesheets' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_stylesheets'), 'ie8_stylesheet' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_ie8_stylesheet'), 'avis_verifies' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_avis_verifies'), 'tag_manager' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_tag_manager'), 'layout_content' => array(object(__TwigTemplate_a4ee375df17623a0290de47b76b51582), 'block_layout_content'), 'javascripts' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_javascripts'), 'tawkto' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_tawkto'), 'additional_classes' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_additional_classes'), 'body_content' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_body_content')))
     (vendor/twig/twig/src/Template.php:182)
  at Twig\Template->displayBlock('body_content', array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array(), 'app' => object(AppVariable), 'disablemultilanguages' => true, 'js_server' => 'http://172.17.0.1:8800', 'default_locale' => 'fr', 'salesforce_base_url' => 'http://wiremock:8080/', 'socket_server_public_url' => 'http://vpauto.live.jit.su:80', 'sentry_dsn' => '', 'allowed_locales' => array('fr', 'de', 'en', 'es', 'hu', 'it', 'pl', 'pt', 'ro', 'nl'), 'current_country' => 'fr', 'countries_domain' => array('de' => 'localhost:8485', 'be' => 'localhost:8489', 'es' => 'localhost:8484', 'fr' => 'localhost:8443', 'en' => 'localhost:8491', 'it' => 'localhost:8482', 'nl' => 'localhost:8490', 'pl' => 'localhost:8486', 'pt' => 'localhost:8481', 'ro' => 'localhost:8488'), 'sell_my_auto_url' => 'https://vendresonauto.com', 'vpauto_report_email_authorized' => 'vpauto.fr|vpauto.eu|vo360.eu', 'azure_maps_url' => 'https://atlas.microsoft.com', 'azure_maps_key' => 'F2YVrXncEAoPK9eoaIFIyYzaNrvkaei-4zepOgFyIQw', 'rudderstack_key' => '2RC3rqGjwQwnEPKuA8fmULJG0Bd', 'rudderstack_dataplane_url' => 'https://scorpultinmwpp.dataplane.rudderstack.com', 'customer_portal_url' => 'https://customer-portal-backoffice-int.azurewebsites.net', 'master_request' => true), array('meta_keywords' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_keywords'), 'meta_desc' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_desc'), 'meta_robot' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_robot'), 'meta_adaptime' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_adaptime'), 'meta_social' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_social'), 'meta_title' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_title'), 'stylesheets' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_stylesheets'), 'ie8_stylesheet' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_ie8_stylesheet'), 'avis_verifies' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_avis_verifies'), 'tag_manager' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_tag_manager'), 'layout_content' => array(object(__TwigTemplate_a4ee375df17623a0290de47b76b51582), 'block_layout_content'), 'javascripts' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_javascripts'), 'tawkto' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_tawkto'), 'additional_classes' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_additional_classes'), 'body_content' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_body_content')))
     (var/cache/dev/fr/vpauto/twig/cd/cdcf5cbee0837cc6132e3ecad2559556.php:106)
  at __TwigTemplate_a4ee375df17623a0290de47b76b51582->block_layout_content(array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array(), 'app' => object(AppVariable), 'disablemultilanguages' => true, 'js_server' => 'http://172.17.0.1:8800', 'default_locale' => 'fr', 'salesforce_base_url' => 'http://wiremock:8080/', 'socket_server_public_url' => 'http://vpauto.live.jit.su:80', 'sentry_dsn' => '', 'allowed_locales' => array('fr', 'de', 'en', 'es', 'hu', 'it', 'pl', 'pt', 'ro', 'nl'), 'current_country' => 'fr', 'countries_domain' => array('de' => 'localhost:8485', 'be' => 'localhost:8489', 'es' => 'localhost:8484', 'fr' => 'localhost:8443', 'en' => 'localhost:8491', 'it' => 'localhost:8482', 'nl' => 'localhost:8490', 'pl' => 'localhost:8486', 'pt' => 'localhost:8481', 'ro' => 'localhost:8488'), 'sell_my_auto_url' => 'https://vendresonauto.com', 'vpauto_report_email_authorized' => 'vpauto.fr|vpauto.eu|vo360.eu', 'azure_maps_url' => 'https://atlas.microsoft.com', 'azure_maps_key' => 'F2YVrXncEAoPK9eoaIFIyYzaNrvkaei-4zepOgFyIQw', 'rudderstack_key' => '2RC3rqGjwQwnEPKuA8fmULJG0Bd', 'rudderstack_dataplane_url' => 'https://scorpultinmwpp.dataplane.rudderstack.com', 'customer_portal_url' => 'https://customer-portal-backoffice-int.azurewebsites.net', 'master_request' => true), array('meta_keywords' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_keywords'), 'meta_desc' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_desc'), 'meta_robot' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_robot'), 'meta_adaptime' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_adaptime'), 'meta_social' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_social'), 'meta_title' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_title'), 'stylesheets' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_stylesheets'), 'ie8_stylesheet' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_ie8_stylesheet'), 'avis_verifies' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_avis_verifies'), 'tag_manager' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_tag_manager'), 'layout_content' => array(object(__TwigTemplate_a4ee375df17623a0290de47b76b51582), 'block_layout_content'), 'javascripts' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_javascripts'), 'tawkto' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_tawkto'), 'additional_classes' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_additional_classes'), 'body_content' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_body_content')))
     (vendor/twig/twig/src/Template.php:182)
  at Twig\Template->displayBlock('layout_content', array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array(), 'app' => object(AppVariable), 'disablemultilanguages' => true, 'js_server' => 'http://172.17.0.1:8800', 'default_locale' => 'fr', 'salesforce_base_url' => 'http://wiremock:8080/', 'socket_server_public_url' => 'http://vpauto.live.jit.su:80', 'sentry_dsn' => '', 'allowed_locales' => array('fr', 'de', 'en', 'es', 'hu', 'it', 'pl', 'pt', 'ro', 'nl'), 'current_country' => 'fr', 'countries_domain' => array('de' => 'localhost:8485', 'be' => 'localhost:8489', 'es' => 'localhost:8484', 'fr' => 'localhost:8443', 'en' => 'localhost:8491', 'it' => 'localhost:8482', 'nl' => 'localhost:8490', 'pl' => 'localhost:8486', 'pt' => 'localhost:8481', 'ro' => 'localhost:8488'), 'sell_my_auto_url' => 'https://vendresonauto.com', 'vpauto_report_email_authorized' => 'vpauto.fr|vpauto.eu|vo360.eu', 'azure_maps_url' => 'https://atlas.microsoft.com', 'azure_maps_key' => 'F2YVrXncEAoPK9eoaIFIyYzaNrvkaei-4zepOgFyIQw', 'rudderstack_key' => '2RC3rqGjwQwnEPKuA8fmULJG0Bd', 'rudderstack_dataplane_url' => 'https://scorpultinmwpp.dataplane.rudderstack.com', 'customer_portal_url' => 'https://customer-portal-backoffice-int.azurewebsites.net', 'master_request' => true), array('meta_keywords' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_keywords'), 'meta_desc' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_desc'), 'meta_robot' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_robot'), 'meta_adaptime' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_adaptime'), 'meta_social' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_social'), 'meta_title' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_title'), 'stylesheets' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_stylesheets'), 'ie8_stylesheet' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_ie8_stylesheet'), 'avis_verifies' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_avis_verifies'), 'tag_manager' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_tag_manager'), 'layout_content' => array(object(__TwigTemplate_a4ee375df17623a0290de47b76b51582), 'block_layout_content'), 'javascripts' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_javascripts'), 'tawkto' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_tawkto'), 'additional_classes' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_additional_classes'), 'body_content' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_body_content')))
     (var/cache/dev/fr/vpauto/twig/16/16bbf1476093da0a9c1248b6de717ee7.php:406)
  at __TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26->doDisplay(array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array(), 'app' => object(AppVariable), 'disablemultilanguages' => true, 'js_server' => 'http://172.17.0.1:8800', 'default_locale' => 'fr', 'salesforce_base_url' => 'http://wiremock:8080/', 'socket_server_public_url' => 'http://vpauto.live.jit.su:80', 'sentry_dsn' => '', 'allowed_locales' => array('fr', 'de', 'en', 'es', 'hu', 'it', 'pl', 'pt', 'ro', 'nl'), 'current_country' => 'fr', 'countries_domain' => array('de' => 'localhost:8485', 'be' => 'localhost:8489', 'es' => 'localhost:8484', 'fr' => 'localhost:8443', 'en' => 'localhost:8491', 'it' => 'localhost:8482', 'nl' => 'localhost:8490', 'pl' => 'localhost:8486', 'pt' => 'localhost:8481', 'ro' => 'localhost:8488'), 'sell_my_auto_url' => 'https://vendresonauto.com', 'vpauto_report_email_authorized' => 'vpauto.fr|vpauto.eu|vo360.eu', 'azure_maps_url' => 'https://atlas.microsoft.com', 'azure_maps_key' => 'F2YVrXncEAoPK9eoaIFIyYzaNrvkaei-4zepOgFyIQw', 'rudderstack_key' => '2RC3rqGjwQwnEPKuA8fmULJG0Bd', 'rudderstack_dataplane_url' => 'https://scorpultinmwpp.dataplane.rudderstack.com', 'customer_portal_url' => 'https://customer-portal-backoffice-int.azurewebsites.net', 'master_request' => true), array('meta_keywords' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_keywords'), 'meta_desc' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_desc'), 'meta_robot' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_robot'), 'meta_adaptime' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_adaptime'), 'meta_social' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_social'), 'meta_title' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_title'), 'stylesheets' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_stylesheets'), 'ie8_stylesheet' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_ie8_stylesheet'), 'avis_verifies' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_avis_verifies'), 'tag_manager' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_tag_manager'), 'layout_content' => array(object(__TwigTemplate_a4ee375df17623a0290de47b76b51582), 'block_layout_content'), 'javascripts' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_javascripts'), 'tawkto' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_tawkto'), 'additional_classes' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_additional_classes'), 'body_content' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_body_content')))
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling(array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array(), 'app' => object(AppVariable), 'disablemultilanguages' => true, 'js_server' => 'http://172.17.0.1:8800', 'default_locale' => 'fr', 'salesforce_base_url' => 'http://wiremock:8080/', 'socket_server_public_url' => 'http://vpauto.live.jit.su:80', 'sentry_dsn' => '', 'allowed_locales' => array('fr', 'de', 'en', 'es', 'hu', 'it', 'pl', 'pt', 'ro', 'nl'), 'current_country' => 'fr', 'countries_domain' => array('de' => 'localhost:8485', 'be' => 'localhost:8489', 'es' => 'localhost:8484', 'fr' => 'localhost:8443', 'en' => 'localhost:8491', 'it' => 'localhost:8482', 'nl' => 'localhost:8490', 'pl' => 'localhost:8486', 'pt' => 'localhost:8481', 'ro' => 'localhost:8488'), 'sell_my_auto_url' => 'https://vendresonauto.com', 'vpauto_report_email_authorized' => 'vpauto.fr|vpauto.eu|vo360.eu', 'azure_maps_url' => 'https://atlas.microsoft.com', 'azure_maps_key' => 'F2YVrXncEAoPK9eoaIFIyYzaNrvkaei-4zepOgFyIQw', 'rudderstack_key' => '2RC3rqGjwQwnEPKuA8fmULJG0Bd', 'rudderstack_dataplane_url' => 'https://scorpultinmwpp.dataplane.rudderstack.com', 'customer_portal_url' => 'https://customer-portal-backoffice-int.azurewebsites.net', 'master_request' => true), array('meta_keywords' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_keywords'), 'meta_desc' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_desc'), 'meta_robot' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_robot'), 'meta_adaptime' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_adaptime'), 'meta_social' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_meta_social'), 'meta_title' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_title'), 'stylesheets' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_stylesheets'), 'ie8_stylesheet' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_ie8_stylesheet'), 'avis_verifies' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_avis_verifies'), 'tag_manager' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_tag_manager'), 'layout_content' => array(object(__TwigTemplate_a4ee375df17623a0290de47b76b51582), 'block_layout_content'), 'javascripts' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_javascripts'), 'tawkto' => array(object(__TwigTemplate_e0788932d1d16f5a04e9a7d93c905d26), 'block_tawkto'), 'additional_classes' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_additional_classes'), 'body_content' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_body_content')))
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display(array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array(), 'app' => object(AppVariable), 'disablemultilanguages' => true, 'js_server' => 'http://172.17.0.1:8800', 'default_locale' => 'fr', 'salesforce_base_url' => 'http://wiremock:8080/', 'socket_server_public_url' => 'http://vpauto.live.jit.su:80', 'sentry_dsn' => '', 'allowed_locales' => array('fr', 'de', 'en', 'es', 'hu', 'it', 'pl', 'pt', 'ro', 'nl'), 'current_country' => 'fr', 'countries_domain' => array('de' => 'localhost:8485', 'be' => 'localhost:8489', 'es' => 'localhost:8484', 'fr' => 'localhost:8443', 'en' => 'localhost:8491', 'it' => 'localhost:8482', 'nl' => 'localhost:8490', 'pl' => 'localhost:8486', 'pt' => 'localhost:8481', 'ro' => 'localhost:8488'), 'sell_my_auto_url' => 'https://vendresonauto.com', 'vpauto_report_email_authorized' => 'vpauto.fr|vpauto.eu|vo360.eu', 'azure_maps_url' => 'https://atlas.microsoft.com', 'azure_maps_key' => 'F2YVrXncEAoPK9eoaIFIyYzaNrvkaei-4zepOgFyIQw', 'rudderstack_key' => '2RC3rqGjwQwnEPKuA8fmULJG0Bd', 'rudderstack_dataplane_url' => 'https://scorpultinmwpp.dataplane.rudderstack.com', 'customer_portal_url' => 'https://customer-portal-backoffice-int.azurewebsites.net', 'master_request' => true), array('layout_content' => array(object(__TwigTemplate_a4ee375df17623a0290de47b76b51582), 'block_layout_content'), 'additional_classes' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_additional_classes'), 'body_content' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_body_content'), 'meta_robot' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_robot'), 'meta_title' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_title'), 'meta_desc' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_desc'), 'tag_manager' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_tag_manager')))
     (var/cache/dev/fr/vpauto/twig/cd/cdcf5cbee0837cc6132e3ecad2559556.php:53)
  at __TwigTemplate_a4ee375df17623a0290de47b76b51582->doDisplay(array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array(), 'app' => object(AppVariable), 'disablemultilanguages' => true, 'js_server' => 'http://172.17.0.1:8800', 'default_locale' => 'fr', 'salesforce_base_url' => 'http://wiremock:8080/', 'socket_server_public_url' => 'http://vpauto.live.jit.su:80', 'sentry_dsn' => '', 'allowed_locales' => array('fr', 'de', 'en', 'es', 'hu', 'it', 'pl', 'pt', 'ro', 'nl'), 'current_country' => 'fr', 'countries_domain' => array('de' => 'localhost:8485', 'be' => 'localhost:8489', 'es' => 'localhost:8484', 'fr' => 'localhost:8443', 'en' => 'localhost:8491', 'it' => 'localhost:8482', 'nl' => 'localhost:8490', 'pl' => 'localhost:8486', 'pt' => 'localhost:8481', 'ro' => 'localhost:8488'), 'sell_my_auto_url' => 'https://vendresonauto.com', 'vpauto_report_email_authorized' => 'vpauto.fr|vpauto.eu|vo360.eu', 'azure_maps_url' => 'https://atlas.microsoft.com', 'azure_maps_key' => 'F2YVrXncEAoPK9eoaIFIyYzaNrvkaei-4zepOgFyIQw', 'rudderstack_key' => '2RC3rqGjwQwnEPKuA8fmULJG0Bd', 'rudderstack_dataplane_url' => 'https://scorpultinmwpp.dataplane.rudderstack.com', 'customer_portal_url' => 'https://customer-portal-backoffice-int.azurewebsites.net', 'master_request' => true), array('layout_content' => array(object(__TwigTemplate_a4ee375df17623a0290de47b76b51582), 'block_layout_content'), 'additional_classes' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_additional_classes'), 'body_content' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_body_content'), 'meta_robot' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_robot'), 'meta_title' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_title'), 'meta_desc' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_desc'), 'tag_manager' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_tag_manager')))
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling(array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array(), 'app' => object(AppVariable), 'disablemultilanguages' => true, 'js_server' => 'http://172.17.0.1:8800', 'default_locale' => 'fr', 'salesforce_base_url' => 'http://wiremock:8080/', 'socket_server_public_url' => 'http://vpauto.live.jit.su:80', 'sentry_dsn' => '', 'allowed_locales' => array('fr', 'de', 'en', 'es', 'hu', 'it', 'pl', 'pt', 'ro', 'nl'), 'current_country' => 'fr', 'countries_domain' => array('de' => 'localhost:8485', 'be' => 'localhost:8489', 'es' => 'localhost:8484', 'fr' => 'localhost:8443', 'en' => 'localhost:8491', 'it' => 'localhost:8482', 'nl' => 'localhost:8490', 'pl' => 'localhost:8486', 'pt' => 'localhost:8481', 'ro' => 'localhost:8488'), 'sell_my_auto_url' => 'https://vendresonauto.com', 'vpauto_report_email_authorized' => 'vpauto.fr|vpauto.eu|vo360.eu', 'azure_maps_url' => 'https://atlas.microsoft.com', 'azure_maps_key' => 'F2YVrXncEAoPK9eoaIFIyYzaNrvkaei-4zepOgFyIQw', 'rudderstack_key' => '2RC3rqGjwQwnEPKuA8fmULJG0Bd', 'rudderstack_dataplane_url' => 'https://scorpultinmwpp.dataplane.rudderstack.com', 'customer_portal_url' => 'https://customer-portal-backoffice-int.azurewebsites.net', 'master_request' => true), array('layout_content' => array(object(__TwigTemplate_a4ee375df17623a0290de47b76b51582), 'block_layout_content'), 'additional_classes' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_additional_classes'), 'body_content' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_body_content'), 'meta_robot' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_robot'), 'meta_title' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_title'), 'meta_desc' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_desc'), 'tag_manager' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_tag_manager')))
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display(array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array(), 'app' => object(AppVariable), 'disablemultilanguages' => true, 'js_server' => 'http://172.17.0.1:8800', 'default_locale' => 'fr', 'salesforce_base_url' => 'http://wiremock:8080/', 'socket_server_public_url' => 'http://vpauto.live.jit.su:80', 'sentry_dsn' => '', 'allowed_locales' => array('fr', 'de', 'en', 'es', 'hu', 'it', 'pl', 'pt', 'ro', 'nl'), 'current_country' => 'fr', 'countries_domain' => array('de' => 'localhost:8485', 'be' => 'localhost:8489', 'es' => 'localhost:8484', 'fr' => 'localhost:8443', 'en' => 'localhost:8491', 'it' => 'localhost:8482', 'nl' => 'localhost:8490', 'pl' => 'localhost:8486', 'pt' => 'localhost:8481', 'ro' => 'localhost:8488'), 'sell_my_auto_url' => 'https://vendresonauto.com', 'vpauto_report_email_authorized' => 'vpauto.fr|vpauto.eu|vo360.eu', 'azure_maps_url' => 'https://atlas.microsoft.com', 'azure_maps_key' => 'F2YVrXncEAoPK9eoaIFIyYzaNrvkaei-4zepOgFyIQw', 'rudderstack_key' => '2RC3rqGjwQwnEPKuA8fmULJG0Bd', 'rudderstack_dataplane_url' => 'https://scorpultinmwpp.dataplane.rudderstack.com', 'customer_portal_url' => 'https://customer-portal-backoffice-int.azurewebsites.net', 'master_request' => true), array('meta_robot' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_robot'), 'meta_title' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_title'), 'meta_desc' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_desc'), 'tag_manager' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_tag_manager'), 'additional_classes' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_additional_classes'), 'body_content' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_body_content')))
     (var/cache/dev/fr/vpauto/twig/6f/6fc74592d56565c8955f3d366bc5bc9a.php:59)
  at __TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97->doDisplay(array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array(), 'app' => object(AppVariable), 'disablemultilanguages' => true, 'js_server' => 'http://172.17.0.1:8800', 'default_locale' => 'fr', 'salesforce_base_url' => 'http://wiremock:8080/', 'socket_server_public_url' => 'http://vpauto.live.jit.su:80', 'sentry_dsn' => '', 'allowed_locales' => array('fr', 'de', 'en', 'es', 'hu', 'it', 'pl', 'pt', 'ro', 'nl'), 'current_country' => 'fr', 'countries_domain' => array('de' => 'localhost:8485', 'be' => 'localhost:8489', 'es' => 'localhost:8484', 'fr' => 'localhost:8443', 'en' => 'localhost:8491', 'it' => 'localhost:8482', 'nl' => 'localhost:8490', 'pl' => 'localhost:8486', 'pt' => 'localhost:8481', 'ro' => 'localhost:8488'), 'sell_my_auto_url' => 'https://vendresonauto.com', 'vpauto_report_email_authorized' => 'vpauto.fr|vpauto.eu|vo360.eu', 'azure_maps_url' => 'https://atlas.microsoft.com', 'azure_maps_key' => 'F2YVrXncEAoPK9eoaIFIyYzaNrvkaei-4zepOgFyIQw', 'rudderstack_key' => '2RC3rqGjwQwnEPKuA8fmULJG0Bd', 'rudderstack_dataplane_url' => 'https://scorpultinmwpp.dataplane.rudderstack.com', 'customer_portal_url' => 'https://customer-portal-backoffice-int.azurewebsites.net', 'master_request' => true), array('meta_robot' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_robot'), 'meta_title' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_title'), 'meta_desc' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_desc'), 'tag_manager' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_tag_manager'), 'additional_classes' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_additional_classes'), 'body_content' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_body_content')))
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling(array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array(), 'app' => object(AppVariable), 'disablemultilanguages' => true, 'js_server' => 'http://172.17.0.1:8800', 'default_locale' => 'fr', 'salesforce_base_url' => 'http://wiremock:8080/', 'socket_server_public_url' => 'http://vpauto.live.jit.su:80', 'sentry_dsn' => '', 'allowed_locales' => array('fr', 'de', 'en', 'es', 'hu', 'it', 'pl', 'pt', 'ro', 'nl'), 'current_country' => 'fr', 'countries_domain' => array('de' => 'localhost:8485', 'be' => 'localhost:8489', 'es' => 'localhost:8484', 'fr' => 'localhost:8443', 'en' => 'localhost:8491', 'it' => 'localhost:8482', 'nl' => 'localhost:8490', 'pl' => 'localhost:8486', 'pt' => 'localhost:8481', 'ro' => 'localhost:8488'), 'sell_my_auto_url' => 'https://vendresonauto.com', 'vpauto_report_email_authorized' => 'vpauto.fr|vpauto.eu|vo360.eu', 'azure_maps_url' => 'https://atlas.microsoft.com', 'azure_maps_key' => 'F2YVrXncEAoPK9eoaIFIyYzaNrvkaei-4zepOgFyIQw', 'rudderstack_key' => '2RC3rqGjwQwnEPKuA8fmULJG0Bd', 'rudderstack_dataplane_url' => 'https://scorpultinmwpp.dataplane.rudderstack.com', 'customer_portal_url' => 'https://customer-portal-backoffice-int.azurewebsites.net', 'master_request' => true), array('meta_robot' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_robot'), 'meta_title' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_title'), 'meta_desc' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_meta_desc'), 'tag_manager' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_tag_manager'), 'additional_classes' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_additional_classes'), 'body_content' => array(object(__TwigTemplate_f4365fc72bfd44ab2401e72a6be26a97), 'block_body_content')))
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display(array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array()))
     (vendor/twig/twig/src/Template.php:390)
  at Twig\Template->render(array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array()), array())
     (vendor/twig/twig/src/TemplateWrapper.php:45)
  at Twig\TemplateWrapper->render(array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array()))
     (vendor/twig/twig/src/Environment.php:318)
  at Twig\Environment->render('Frontend/vehicle/index.html.twig', array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array()))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('Frontend/vehicle/index.html.twig', array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array()))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('Frontend/vehicle/index.html.twig', array('pager' => object(Pagerfanta), 'nbVehiclesSales' => 0, 'sales' => array(), 'currentSale' => null, 'currentEvent' => null, 'limitForm' => object(FormView), 'sortForm' => object(FormView), 'selections' => array(), 'showRegistrationBanner' => true, 'listType' => null, 'datesForCurrentSale' => array()))
     (src/Controller/Frontend/VehicleController.php:213)
  at App\Controller\Frontend\VehicleController->indexAction(object(Request), object(SelectionRepository), object(AuctionRepository))
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  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))
     (public/index.php:30)