Exceptions
Exception
Twig\Error\ RuntimeError
in
src/Resources/views/Frontend/search.html.twig
(line 51)
<div class="prelative" data-field="category">
<ul>
<li class="elmt-onglet-vehicule">
<i class="icon-tourisme"></i>
<label>{{ 'frontend.search.form.category.tourism'|trans }}</label>
<span class="input-checkbox03"><input type="checkbox" value="{{ categories.vehiculedetourisme }}" name="" {{ macros.isChecked(categories.vehiculedetourisme, form_values) }}></span>
</li>
<li class="elmt-onglet-vehicule">
<i class="icon-utilitaire"></i>
<label>{{ 'frontend.search.form.category.utility'|trans }}</label>
<span class="input-checkbox03"><input type="checkbox" value="{{ categories.utilitaire }}" name="" {{ macros.isChecked(categories.utilitaire, form_values) }}></span>
in
var/cache/dev/fr/vpauto/twig/f4/f48467aacc0b727d6d4fe312a19fe1c3.php
twig_get_attribute
(line 134)
// line 50
echo twig_escape_filter($this->env, $this->extensions['Symfony\Bridge\Twig\Extension\TranslationExtension']->trans("frontend.search.form.category.tourism"), "html", null, true);
echo "</label>
<span class=\"input-checkbox03\"><input type=\"checkbox\" value=\"";
// line 51
echo twig_escape_filter($this->env, 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", false, false, false, 51), "html", null, true);
echo "\" name=\"\" ";
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", false, false, false, 51), (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());
echo "></span>
</li>
<li class=\"elmt-onglet-vehicule\">
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 405)
}
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 378)
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 390)
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 45)
*/
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] ?? []);
}
/**
* Displays the template.
*
in
vendor/twig/twig/src/Environment.php
->
render
(line 318)
* @throws SyntaxError When an error occurred during compilation
* @throws RuntimeError When an error occurred during rendering
*/
public function render($name, array $context = [])
{
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('/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)
foreach ($categories as $key => $category) {
$categories[$category->getNameCanonical()] = $category->getId();
unset($categories[$key]);
}
return $this->render('/Frontend/search.html.twig', [
'freesearch_form' => $this->formFactory->create(VehicleFreeSearchType::class)->createView(),
'search_form' => $this->getSearchForm($request->getSession()->get('form_values', []), ['form_type' => $formType])->createView(),
'categories' => $categories,
'form_values' => $this->session->get('form_values'),
'form_type' => $formType,
in
vendor/symfony/http-kernel/HttpKernel.php
->
searchAction
(line 163)
$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 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
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/HttpCache/SubRequestHandler.php
->
handle
(line 86)
if (!IpUtils::checkIp('127.0.0.1', $trustedProxies)) {
Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
}
try {
return $kernel->handle($request, $type, $catch);
} finally {
// restore global state
Request::setTrustedProxies($trustedProxies, $trustedHeaderSet);
}
}
in
vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php
::
handle
(line 80)
$subRequest->attributes->add($reference->attributes);
}
$level = ob_get_level();
try {
return SubRequestHandler::handle($this->kernel, $subRequest, HttpKernelInterface::SUB_REQUEST, false);
} catch (\Exception $e) {
// we dispatch the exception event to trigger the logging
// the response that comes back is ignored
if (isset($options['ignore_errors']) && $options['ignore_errors'] && $this->dispatcher) {
$event = new ExceptionEvent($this->kernel, $request, HttpKernelInterface::SUB_REQUEST, $e);
in
vendor/symfony/http-kernel/Fragment/FragmentHandler.php
->
render
(line 85)
if (!$request = $this->requestStack->getCurrentRequest()) {
throw new \LogicException('Rendering a fragment can only be done when handling a Request.');
}
return $this->deliver($this->renderers[$renderer]->render($uri, $request, $options));
}
/**
* Delivers the Response as a string.
*
in
vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php
->
render
(line 49)
if (!isset($this->initialized[$renderer]) && $this->container->has($renderer)) {
$this->addRenderer($this->container->get($renderer));
$this->initialized[$renderer] = true;
}
return parent::render($uri, $renderer, $options);
}
}
in
vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php
->
render
(line 46)
public function renderFragment($uri, array $options = []): string
{
$strategy = $options['strategy'] ?? 'inline';
unset($options['strategy']);
return $this->handler->render($uri, $strategy, $options);
}
/**
* Renders a fragment.
*
in
var/cache/dev/fr/vpauto/twig/6f/6fc74592d56565c8955f3d366bc5bc9a.php
->
renderFragment
(line 292)
</div>
<div class=\"col3x list-vehicle\">
";
// line 61
echo $this->env->getRuntime('Symfony\Bridge\Twig\Extension\HttpKernelRuntime')->renderFragment(Symfony\Bridge\Twig\Extension\HttpKernelExtension::controller("App\\Controller\\Frontend\\VehicleController:searchAction"));
echo "
</div>
";
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
block_body_content
(line 182)
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/fr/vpauto/twig/cd/cdcf5cbee0837cc6132e3ecad2559556.php
->
displayBlock
(line 106)
// line 14
$this->displayBlock('additional_classes', $context, $blocks);
echo "\">
";
// line 15
$this->displayBlock('body_content', $context, $blocks);
// line 16
echo "</div>
<!--MIDDLE CONTENT SECTION ENDS HERE-->
";
in
vendor/twig/twig/src/Template.php
->
block_layout_content
(line 182)
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/fr/vpauto/twig/16/16bbf1476093da0a9c1248b6de717ee7.php
->
displayBlock
(line 406)
";
// line 227
$this->loadTemplate("flash/flash.html.twig", "base_frontend.html.twig", 227)->display($context);
// line 228
echo " ";
$this->displayBlock('layout_content', $context, $blocks);
// line 229
echo "</div>
";
// line 230
$this->displayBlock('javascripts', $context, $blocks);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 405)
}
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 378)
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/fr/vpauto/twig/cd/cdcf5cbee0837cc6132e3ecad2559556.php
->
display
(line 53)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "frontend/frontend.html.twig"));
$this->parent = $this->loadTemplate("base_frontend.html.twig", "frontend/frontend.html.twig", 1);
$this->parent->display($context, array_merge($this->blocks, $blocks));
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_b91a4435ea3baf1e2b6bfda56133dace->leave($__internal_b91a4435ea3baf1e2b6bfda56133dace_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 405)
}
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 378)
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/fr/vpauto/twig/6f/6fc74592d56565c8955f3d366bc5bc9a.php
->
display
(line 59)
// line 3
$macros["macros"] = $this->macros["macros"] = $this->loadTemplate("/Frontend/macros.html.twig", "Frontend/vehicle/index.html.twig", 3)->unwrap();
// line 1
$this->parent = $this->loadTemplate("frontend/frontend.html.twig", "Frontend/vehicle/index.html.twig", 1);
$this->parent->display($context, array_merge($this->blocks, $blocks));
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_b91a4435ea3baf1e2b6bfda56133dace->leave($__internal_b91a4435ea3baf1e2b6bfda56133dace_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 405)
}
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 378)
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 390)
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 45)
*/
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] ?? []);
}
/**
* Displays the template.
*
in
vendor/twig/twig/src/Environment.php
->
render
(line 318)
* @throws SyntaxError When an error occurred during compilation
* @throws RuntimeError When an error occurred during rendering
*/
public function render($name, array $context = [])
{
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('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)
if ($dates['max_closedAt'] != $dates['min_closedAt']) {
$datesForCurrentSale = ['max_closedAt' => new \DateTime($dates['max_closedAt']), 'min_closedAt' => new \DateTime($dates['min_closedAt'])];
}
}
return $this->render('Frontend/vehicle/index.html.twig', [
'pager' => $pager,
'nbVehiclesSales' => $nbVehiclesSales,
'sales' => $sales,
'currentSale' => $currentSale,
'currentEvent' => $currentEvent,
in
vendor/symfony/http-kernel/HttpKernel.php
->
indexAction
(line 163)
$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 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
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;
}
}
Request::setTrustedHosts([$trustedHosts]);
}
$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$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) |