Exceptions
Exceptions 2
Twig\Error\ RuntimeError
<div class="container"><div class="service__information__wrapper"><div class="service__information__content"><p class="service__information__content__text">{{ category.getContentByLocale(app.request.locale).description|raw }}</p></div><img class="service__information__img" src="{{ sonata_path(category.image, 'reference') }}" alt=""></div></div></section><section class="section__all__services__item">
in
var/cache/dev/twig/71/714bddffb8d2c6538985f667eb022412.php
->
yieldBlock
(line 193)
";// line 39yield from $this->load("@Portal/new-header.html.twig", 39)->unwrap()->yield($context);// line 40yield " ";yield from $this->unwrap()->yieldBlock('content', $context, $blocks);// line 42yield " <link rel=\"stylesheet\" type=\"text/css\" href=\"";yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/portal/css/modules/contacts-call.css"), "html", null, true);yield "\">";
in
vendor/twig/twig/src/Template.php
->
block_body
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/ab/abcc6f89abaf493079ff4f07a70fc725.php
->
yieldBlock
(line 171)
yield from $this->unwrap()->yieldBlock('socialPreview', $context, $blocks);// line 93yield "";// line 94yield from $this->unwrap()->yieldBlock('body', $context, $blocks);// line 96yield from $this->load("@My/Modules/auth.html.twig", 96)->unwrap()->yield($context);// line 97yield from $this->unwrap()->yieldBlock('coreMessage', $context, $blocks);// line 100
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
var/cache/dev/twig/71/714bddffb8d2c6538985f667eb022412.php
->
yield
(line 60)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "@Portal/base.html.twig"));$this->parent = $this->load("@Core/DCSite/core-dc-template.html.twig", 1);yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
var/cache/dev/twig/f9/f9672f2245d7eb6a40cb5a916a403f42.php
->
yield
(line 57)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "@Portal/Service/body-repair-category.html.twig"));$this->parent = $this->load("@Portal/base.html.twig", 1);yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
vendor/twig/twig/src/Template.php
->
yield
(line 358)
return $this->blocks;}public function display(array $context, array $blocks = []): void{foreach ($this->yield($context, $blocks) as $data) {echo $data;}}public function render(array $context): string
in
vendor/twig/twig/src/Template.php
->
display
(line 373)
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 51)
yield from $this->template->yieldBlock($name, $context);}public function render(array $context = []): string{return $this->template->render($context);}/*** @return void*/
in
vendor/twig/twig/src/Environment.php
->
render
(line 333)
* @throws SyntaxError When an error occurred during compilation* @throws RuntimeError When an error occurred during rendering*/public function render($name, array $context = []): string{return $this->load($name)->render($context);}/*** Displays a template.*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
render
(line 258)
{if (!$this->container->has('twig')) {throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');}return $this->container->get('twig')->render($view, $parameters);}/*** Renders a view.*/
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
renderView
(line 266)
/*** Renders a view.*/protected function render(string $view, array $parameters = [], ?Response $response = null): Response{$content = $this->renderView($view, $parameters);if (null === $response) {$response = new Response();}
AbstractController->render('@Portal/Service/body-repair-category.html.twig', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)), object(Response))
in
src/PortalBundle/Controller/BaseController.php
(line 84)
$defaultType = VehicleType::getTypeDataById(VehicleType::DEFAULT_TYPE);$catalogUrl = $this->router->generate('portal_new_catalog_b', ['state' => 'new', 'type' => $defaultType['url'], 'brand' => 'all']);$parameters['catalogUrl'] = $catalogUrl;return parent::render($view, $parameters, $response);}public function buildForms(): array{return [
BaseController->basePortalRender('@Portal/Service/body-repair-category.html.twig', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)), object(Response))
in
src/PortalBundle/Controller/ServiceController.php
(line 111)
$defaultType = VehicleType::getTypeDataById(VehicleType::DEFAULT_TYPE);$catalogUrl = $this->router->generate('portal_new_catalog_b', ['state' => 'new', 'type' => $defaultType['url'], 'brand' => 'all']);$parameters['catalogUrl'] = $catalogUrl;return parent::basePortalRender($view, $parameters, $response);}public function to(Request $request, EntityManagerInterface $em){$brands = $em->getRepository(Brand::class)->getBrandsHasRegulation();
ServiceController->serviceRender('@Portal/Service/body-repair-category.html.twig', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/'))
in
src/PortalBundle/Controller/ServiceController.php
(line 232)
return $this->serviceRender('@Portal/Service/body-repair-category.html.twig', ['dealer' => $dealer,'serviceActions' => $serviceActions,'category' => $category,'subCategories' => $subCategories,'repairPhotoForm' => $this->CoreFormFactory()->repairPhotoForm()->createView(),]);}public function bodyRepairSubCategory(Request $request, EntityManagerInterface $em): Response{
in
vendor/symfony/http-kernel/HttpKernel.php
->
bodyRepairCategory
(line 163)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$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;}}
Debug::enable();}$kernel = new Kernel($_SERVER['APP_ENV'], $_SERVER['APP_DEBUG']);$request = Request::createFromGlobals();$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
TypeError
'media' => $media,'options' => $options,]);}public function path(int|string|MediaInterface $media, string $format): string{$media = $this->getMedia($media);if (null === $media) {return '';
in
var/cache/dev/twig/f9/f9672f2245d7eb6a40cb5a916a403f42.php
->
path
(line 292)
yield CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, (isset($context["category"]) || array_key_exists("category", $context) ? $context["category"] : (function () { throw new RuntimeError('Variable "category" does not exist.', 120, $this->source); })()), "getContentByLocale", [CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, (isset($context["app"]) || array_key_exists("app", $context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.', 120, $this->source); })()), "request", [], "any", false, false, false, 120), "locale", [], "any", false, false, false, 120)], "method", false, false, false, 120), "description", [], "any", false, false, false, 120);yield "</p></div><img class=\"service__information__img\" src=\"";// line 122yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->env->getRuntime('Sonata\MediaBundle\Twig\MediaRuntime')->path(CoreExtension::getAttribute($this->env, $this->source, (isset($context["category"]) || array_key_exists("category", $context) ? $context["category"] : (function () { throw new RuntimeError('Variable "category" does not exist.', 122, $this->source); })()), "image", [], "any", false, false, false, 122), "reference"), "html", null, true);yield "\" alt=\"\"></div></div></section>
in
vendor/twig/twig/src/Template.php
->
block_content
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/71/714bddffb8d2c6538985f667eb022412.php
->
yieldBlock
(line 193)
";// line 39yield from $this->load("@Portal/new-header.html.twig", 39)->unwrap()->yield($context);// line 40yield " ";yield from $this->unwrap()->yieldBlock('content', $context, $blocks);// line 42yield " <link rel=\"stylesheet\" type=\"text/css\" href=\"";yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\AssetExtension']->getAssetUrl("bundles/portal/css/modules/contacts-call.css"), "html", null, true);yield "\">";
in
vendor/twig/twig/src/Template.php
->
block_body
(line 446)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');}if (null !== $template) {try {yield from $template->$block($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($template->getSourceContext());}
in
var/cache/dev/twig/ab/abcc6f89abaf493079ff4f07a70fc725.php
->
yieldBlock
(line 171)
yield from $this->unwrap()->yieldBlock('socialPreview', $context, $blocks);// line 93yield "";// line 94yield from $this->unwrap()->yieldBlock('body', $context, $blocks);// line 96yield from $this->load("@My/Modules/auth.html.twig", 96)->unwrap()->yield($context);// line 97yield from $this->unwrap()->yieldBlock('coreMessage', $context, $blocks);// line 100
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
var/cache/dev/twig/71/714bddffb8d2c6538985f667eb022412.php
->
yield
(line 60)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "@Portal/base.html.twig"));$this->parent = $this->load("@Core/DCSite/core-dc-template.html.twig", 1);yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
var/cache/dev/twig/f9/f9672f2245d7eb6a40cb5a916a403f42.php
->
yield
(line 57)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "@Portal/Service/body-repair-category.html.twig"));$this->parent = $this->load("@Portal/base.html.twig", 1);yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 402)
{$context += $this->env->getGlobals();$blocks = array_merge($this->blocks, $blocks);try {yield from $this->doDisplay($context, $blocks);} catch (Error $e) {if (!$e->getSourceContext()) {$e->setSourceContext($this->getSourceContext());}
in
vendor/twig/twig/src/Template.php
->
yield
(line 358)
return $this->blocks;}public function display(array $context, array $blocks = []): void{foreach ($this->yield($context, $blocks) as $data) {echo $data;}}public function render(array $context): string
in
vendor/twig/twig/src/Template.php
->
display
(line 373)
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 51)
yield from $this->template->yieldBlock($name, $context);}public function render(array $context = []): string{return $this->template->render($context);}/*** @return void*/
in
vendor/twig/twig/src/Environment.php
->
render
(line 333)
* @throws SyntaxError When an error occurred during compilation* @throws RuntimeError When an error occurred during rendering*/public function render($name, array $context = []): string{return $this->load($name)->render($context);}/*** Displays a template.*
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
render
(line 258)
{if (!$this->container->has('twig')) {throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');}return $this->container->get('twig')->render($view, $parameters);}/*** Renders a view.*/
in
vendor/symfony/framework-bundle/Controller/AbstractController.php
->
renderView
(line 266)
/*** Renders a view.*/protected function render(string $view, array $parameters = [], ?Response $response = null): Response{$content = $this->renderView($view, $parameters);if (null === $response) {$response = new Response();}
AbstractController->render('@Portal/Service/body-repair-category.html.twig', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)), object(Response))
in
src/PortalBundle/Controller/BaseController.php
(line 84)
$defaultType = VehicleType::getTypeDataById(VehicleType::DEFAULT_TYPE);$catalogUrl = $this->router->generate('portal_new_catalog_b', ['state' => 'new', 'type' => $defaultType['url'], 'brand' => 'all']);$parameters['catalogUrl'] = $catalogUrl;return parent::render($view, $parameters, $response);}public function buildForms(): array{return [
BaseController->basePortalRender('@Portal/Service/body-repair-category.html.twig', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)), object(Response))
in
src/PortalBundle/Controller/ServiceController.php
(line 111)
$defaultType = VehicleType::getTypeDataById(VehicleType::DEFAULT_TYPE);$catalogUrl = $this->router->generate('portal_new_catalog_b', ['state' => 'new', 'type' => $defaultType['url'], 'brand' => 'all']);$parameters['catalogUrl'] = $catalogUrl;return parent::basePortalRender($view, $parameters, $response);}public function to(Request $request, EntityManagerInterface $em){$brands = $em->getRepository(Brand::class)->getBrandsHasRegulation();
ServiceController->serviceRender('@Portal/Service/body-repair-category.html.twig', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/'))
in
src/PortalBundle/Controller/ServiceController.php
(line 232)
return $this->serviceRender('@Portal/Service/body-repair-category.html.twig', ['dealer' => $dealer,'serviceActions' => $serviceActions,'category' => $category,'subCategories' => $subCategories,'repairPhotoForm' => $this->CoreFormFactory()->repairPhotoForm()->createView(),]);}public function bodyRepairSubCategory(Request $request, EntityManagerInterface $em): Response{
in
vendor/symfony/http-kernel/HttpKernel.php
->
bodyRepairCategory
(line 163)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);$controller = $event->getController();$arguments = $event->getArguments();// call controller$response = $controller(...$arguments);// viewif (!$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;}}
Debug::enable();}$kernel = new Kernel($_SERVER['APP_ENV'], $_SERVER['APP_DEBUG']);$request = Request::createFromGlobals();$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 19:22:53 | php |
User Deprecated: Since symfony/monolog-bridge 6.4: The "Symfony\Bridge\Monolog\Logger" class is deprecated, use HttpKernel's DebugLoggerConfigurator instead. {
"exception": {}
}
|
| INFO 19:22:53 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "0027e1"
},
"request_uri": "https://shop.dev02.nissan-vidi.com.ua/index.php/_profiler/0027e1?panel=exception",
"method": "GET"
}
|
| INFO 19:22:53 | php |
User Deprecated: Since symfony/http-foundation 6.2: The "Symfony\Component\HttpFoundation\RequestMatcher" class is deprecated, use "Symfony\Component\HttpFoundation\ChainRequestMatcher" instead. {
"exception": {}
}
|
| INFO 19:22:53 | 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 19:22:53 | 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 19:22:53 | 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 19:22:53 | 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 19:22:53 | php |
User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.manager" service is deprecated, use the new authenticator system instead. {
"exception": {}
}
|
| INFO 19:22:53 | 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 19:22:53 | 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 19:22:53 | 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 19:22:53 | 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 19:22:53 | 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 19:22:53 | 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 19:22:53 | php |
User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" class is deprecated. {
"exception": {}
}
|
| INFO 19:22:53 | 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 19:22:53 | php |
User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.dao.main" service is deprecated, use the new authenticator system instead. {
"exception": {}
}
|
| INFO 19:22:53 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\DaoAuthenticationProvider" class is deprecated, use the new authenticator system instead. {
"exception": {}
}
|
| INFO 19:22:53 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\UserAuthenticationProvider" class is deprecated, use the new authenticator system instead. {
"exception": {}
}
|
| INFO 19:22:53 | 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 19:22:53 | php |
User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.anonymous.main" service is deprecated, use the new authenticator system instead. {
"exception": {}
}
|
| INFO 19:22:53 | 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 19:22:53 | security | Populated the TokenStorage with an anonymous Token. |
| INFO 19:22:53 | php |
User Deprecated: Since symfony/security-http 5.4: The $authManager argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" is deprecated. {
"exception": {}
}
|
| INFO 19:22:53 | 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": {}
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "CoreBundle\EventListener\RedirectListener::onKernelRequest". {
"event": "kernel.request",
"listener": "CoreBundle\\EventListener\\RedirectListener::onKernelRequest"
}
|
| INFO 19:22:53 | 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": {}
}
|
| INFO 19:22:53 | 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": {}
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "CoreBundle\EventListener\ControllerTraceListener::onKernelController". {
"event": "kernel.controller",
"listener": "CoreBundle\\EventListener\\ControllerTraceListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "CoreBundle\EventListener\AuthUserListener::onKernelController". {
"event": "kernel.controller",
"listener": "CoreBundle\\EventListener\\AuthUserListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "CoreBundle\EventListener\RedirectListener::onKernelRequest". {
"event": "kernel.request",
"listener": "CoreBundle\\EventListener\\RedirectListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "CoreBundle\EventListener\ControllerTraceListener::onKernelController". {
"event": "kernel.controller",
"listener": "CoreBundle\\EventListener\\ControllerTraceListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "CoreBundle\EventListener\AuthUserListener::onKernelController". {
"event": "kernel.controller",
"listener": "CoreBundle\\EventListener\\AuthUserListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| INFO 19:22:53 | php |
User Deprecated: Since sonata-project/block-bundle 4.11: The "sonata.block.cache.handler.default" service is deprecated since sonata-project/block-bundle 4.11 and will be removed in 5.0. {
"exception": {}
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Sonata\BlockBundle\Cache\HttpCacheHandler::onKernelResponse". {
"event": "kernel.response",
"listener": "Sonata\\BlockBundle\\Cache\\HttpCacheHandler::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "CoreBundle\EventListener\RedirectListener::onKernelRequest". {
"event": "kernel.request",
"listener": "CoreBundle\\EventListener\\RedirectListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "CoreBundle\EventListener\ControllerTraceListener::onKernelController". {
"event": "kernel.controller",
"listener": "CoreBundle\\EventListener\\ControllerTraceListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "CoreBundle\EventListener\AuthUserListener::onKernelController". {
"event": "kernel.controller",
"listener": "CoreBundle\\EventListener\\AuthUserListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Sonata\BlockBundle\Cache\HttpCacheHandler::onKernelResponse". {
"event": "kernel.response",
"listener": "Sonata\\BlockBundle\\Cache\\HttpCacheHandler::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest". {
"event": "kernel.finish_request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.request" to listener "CoreBundle\EventListener\RedirectListener::onKernelRequest". {
"event": "kernel.request",
"listener": "CoreBundle\\EventListener\\RedirectListener::onKernelRequest"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "CoreBundle\EventListener\ControllerTraceListener::onKernelController". {
"event": "kernel.controller",
"listener": "CoreBundle\\EventListener\\ControllerTraceListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "CoreBundle\EventListener\AuthUserListener::onKernelController". {
"event": "kernel.controller",
"listener": "CoreBundle\\EventListener\\AuthUserListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| DEBUG 19:22:53 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
Stack Traces 2
|
[2/2]
RuntimeError
|
|---|
Twig\Error\RuntimeError:
An exception has been thrown during the rendering of a template ("Sonata\MediaBundle\Twig\MediaRuntime::path(): Argument #1 ($media) must be of type Sonata\MediaBundle\Model\MediaInterface|string|int, null given, called in /var/www/vidi.ua/releases/251031-da518f26/var/cache/dev/twig/f9/f9672f2245d7eb6a40cb5a916a403f42.php on line 292") in "@Portal/Service/body-repair-category.html.twig" at line 122.
at src/PortalBundle/Resources/views/Service/body-repair-category.html.twig:122
at Twig\Template->yieldBlock('content', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('gtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_gtm'), 'robots' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_robots'), 'head' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_head'), 'ogtagStatic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagStatic'), 'ogtagDynamicImage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamicImage'), 'ogtagDynamic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamic'), 'canonical' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_canonical'), 'bodyGtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_bodyGtm'), 'socialPreview' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_socialPreview'), 'body' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_body'), 'coreMessage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_coreMessage'), 'initJsApp' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_initJsApp'), 'coreBottomJs' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_coreBottomJs'), 'seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(var/cache/dev/twig/71/714bddffb8d2c6538985f667eb022412.php:193)
at __TwigTemplate_9a874dba8395e99130faff04341b835d->block_body(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('gtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_gtm'), 'robots' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_robots'), 'head' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_head'), 'ogtagStatic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagStatic'), 'ogtagDynamicImage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamicImage'), 'ogtagDynamic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamic'), 'canonical' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_canonical'), 'bodyGtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_bodyGtm'), 'socialPreview' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_socialPreview'), 'body' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_body'), 'coreMessage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_coreMessage'), 'initJsApp' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_initJsApp'), 'coreBottomJs' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_coreBottomJs'), 'seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('body', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('gtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_gtm'), 'robots' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_robots'), 'head' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_head'), 'ogtagStatic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagStatic'), 'ogtagDynamicImage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamicImage'), 'ogtagDynamic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamic'), 'canonical' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_canonical'), 'bodyGtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_bodyGtm'), 'socialPreview' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_socialPreview'), 'body' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_body'), 'coreMessage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_coreMessage'), 'initJsApp' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_initJsApp'), 'coreBottomJs' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_coreBottomJs'), 'seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(var/cache/dev/twig/ab/abcc6f89abaf493079ff4f07a70fc725.php:171)
at __TwigTemplate_62bd1affd9a72d924a5a14c7887c018a->doDisplay(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('gtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_gtm'), 'robots' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_robots'), 'head' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_head'), 'ogtagStatic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagStatic'), 'ogtagDynamicImage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamicImage'), 'ogtagDynamic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamic'), 'canonical' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_canonical'), 'bodyGtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_bodyGtm'), 'socialPreview' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_socialPreview'), 'body' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_body'), 'coreMessage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_coreMessage'), 'initJsApp' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_initJsApp'), 'coreBottomJs' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_coreBottomJs'), 'seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('gtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_gtm'), 'robots' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_robots'), 'head' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_head'), 'ogtagStatic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagStatic'), 'ogtagDynamicImage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamicImage'), 'ogtagDynamic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamic'), 'canonical' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_canonical'), 'bodyGtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_bodyGtm'), 'socialPreview' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_socialPreview'), 'body' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_body'), 'coreMessage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_coreMessage'), 'initJsApp' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_initJsApp'), 'coreBottomJs' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_coreBottomJs'), 'seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(var/cache/dev/twig/71/714bddffb8d2c6538985f667eb022412.php:60)
at __TwigTemplate_9a874dba8395e99130faff04341b835d->doDisplay(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('head' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_head'), 'seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'body' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_body'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'coreBottomJs' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_coreBottomJs'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('head' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_head'), 'seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'body' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_body'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'coreBottomJs' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_coreBottomJs'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(var/cache/dev/twig/f9/f9672f2245d7eb6a40cb5a916a403f42.php:57)
at __TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be->doDisplay(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(vendor/twig/twig/src/Template.php:358)
at Twig\Template->display(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)))
(vendor/twig/twig/src/Template.php:373)
at Twig\Template->render(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)))
(vendor/twig/twig/src/TemplateWrapper.php:51)
at Twig\TemplateWrapper->render(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)))
(vendor/twig/twig/src/Environment.php:333)
at Twig\Environment->render('@Portal/Service/body-repair-category.html.twig', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)))
(vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('@Portal/Service/body-repair-category.html.twig', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)))
(vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('@Portal/Service/body-repair-category.html.twig', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)), object(Response))
(src/PortalBundle/Controller/BaseController.php:84)
at PortalBundle\Controller\BaseController->basePortalRender('@Portal/Service/body-repair-category.html.twig', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)), object(Response))
(src/PortalBundle/Controller/ServiceController.php:111)
at PortalBundle\Controller\ServiceController->serviceRender('@Portal/Service/body-repair-category.html.twig', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/'))
(src/PortalBundle/Controller/ServiceController.php:232)
at PortalBundle\Controller\ServiceController->bodyRepairCategory(object(Request), object(EntityManager))
(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:19)
|
|
[1/2]
TypeError
|
|---|
TypeError:
Sonata\MediaBundle\Twig\MediaRuntime::path(): Argument #1 ($media) must be of type Sonata\MediaBundle\Model\MediaInterface|string|int, null given, called in /var/www/vidi.ua/releases/251031-da518f26/var/cache/dev/twig/f9/f9672f2245d7eb6a40cb5a916a403f42.php on line 292
at vendor/sonata-project/media-bundle/src/Twig/MediaRuntime.php:104
at Sonata\MediaBundle\Twig\MediaRuntime->path(null, 'reference')
(var/cache/dev/twig/f9/f9672f2245d7eb6a40cb5a916a403f42.php:292)
at __TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be->block_content(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('gtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_gtm'), 'robots' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_robots'), 'head' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_head'), 'ogtagStatic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagStatic'), 'ogtagDynamicImage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamicImage'), 'ogtagDynamic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamic'), 'canonical' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_canonical'), 'bodyGtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_bodyGtm'), 'socialPreview' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_socialPreview'), 'body' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_body'), 'coreMessage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_coreMessage'), 'initJsApp' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_initJsApp'), 'coreBottomJs' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_coreBottomJs'), 'seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('content', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('gtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_gtm'), 'robots' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_robots'), 'head' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_head'), 'ogtagStatic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagStatic'), 'ogtagDynamicImage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamicImage'), 'ogtagDynamic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamic'), 'canonical' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_canonical'), 'bodyGtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_bodyGtm'), 'socialPreview' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_socialPreview'), 'body' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_body'), 'coreMessage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_coreMessage'), 'initJsApp' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_initJsApp'), 'coreBottomJs' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_coreBottomJs'), 'seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(var/cache/dev/twig/71/714bddffb8d2c6538985f667eb022412.php:193)
at __TwigTemplate_9a874dba8395e99130faff04341b835d->block_body(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('gtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_gtm'), 'robots' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_robots'), 'head' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_head'), 'ogtagStatic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagStatic'), 'ogtagDynamicImage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamicImage'), 'ogtagDynamic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamic'), 'canonical' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_canonical'), 'bodyGtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_bodyGtm'), 'socialPreview' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_socialPreview'), 'body' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_body'), 'coreMessage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_coreMessage'), 'initJsApp' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_initJsApp'), 'coreBottomJs' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_coreBottomJs'), 'seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(vendor/twig/twig/src/Template.php:446)
at Twig\Template->yieldBlock('body', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('gtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_gtm'), 'robots' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_robots'), 'head' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_head'), 'ogtagStatic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagStatic'), 'ogtagDynamicImage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamicImage'), 'ogtagDynamic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamic'), 'canonical' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_canonical'), 'bodyGtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_bodyGtm'), 'socialPreview' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_socialPreview'), 'body' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_body'), 'coreMessage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_coreMessage'), 'initJsApp' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_initJsApp'), 'coreBottomJs' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_coreBottomJs'), 'seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(var/cache/dev/twig/ab/abcc6f89abaf493079ff4f07a70fc725.php:171)
at __TwigTemplate_62bd1affd9a72d924a5a14c7887c018a->doDisplay(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('gtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_gtm'), 'robots' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_robots'), 'head' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_head'), 'ogtagStatic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagStatic'), 'ogtagDynamicImage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamicImage'), 'ogtagDynamic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamic'), 'canonical' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_canonical'), 'bodyGtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_bodyGtm'), 'socialPreview' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_socialPreview'), 'body' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_body'), 'coreMessage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_coreMessage'), 'initJsApp' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_initJsApp'), 'coreBottomJs' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_coreBottomJs'), 'seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('gtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_gtm'), 'robots' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_robots'), 'head' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_head'), 'ogtagStatic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagStatic'), 'ogtagDynamicImage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamicImage'), 'ogtagDynamic' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_ogtagDynamic'), 'canonical' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_canonical'), 'bodyGtm' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_bodyGtm'), 'socialPreview' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_socialPreview'), 'body' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_body'), 'coreMessage' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_coreMessage'), 'initJsApp' => array(object(__TwigTemplate_62bd1affd9a72d924a5a14c7887c018a), 'block_initJsApp'), 'coreBottomJs' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_coreBottomJs'), 'seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(var/cache/dev/twig/71/714bddffb8d2c6538985f667eb022412.php:60)
at __TwigTemplate_9a874dba8395e99130faff04341b835d->doDisplay(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('head' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_head'), 'seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'body' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_body'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'coreBottomJs' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_coreBottomJs'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('head' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_head'), 'seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'body' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_body'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'coreBottomJs' => array(object(__TwigTemplate_9a874dba8395e99130faff04341b835d), 'block_coreBottomJs'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(var/cache/dev/twig/f9/f9672f2245d7eb6a40cb5a916a403f42.php:57)
at __TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be->doDisplay(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(vendor/twig/twig/src/Template.php:402)
at Twig\Template->yield(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'allowed_locales' => array('ua', 'ru'), 'MODE' => 'prod', 'VERSION' => 'v1.4.779', 'VOLVO_DEALER' => 30, 'UPLOADS_BASE_PATH' => '/uploads/media/default/', 'INCLUDE_ANALYTICS' => false, 'sonata_block' => object(GlobalVariables), 'sonata_config' => object(SonataConfiguration), 'sonata_media' => object(GlobalVariables)), array('seo' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_seo'), 'css' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_css'), 'content' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_content'), 'pageJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_pageJS'), 'suChatJS' => array(object(__TwigTemplate_0e4aa0275c80c5f29af30fdc11b0c5be), 'block_suChatJS')))
(vendor/twig/twig/src/Template.php:358)
at Twig\Template->display(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)))
(vendor/twig/twig/src/Template.php:373)
at Twig\Template->render(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)))
(vendor/twig/twig/src/TemplateWrapper.php:51)
at Twig\TemplateWrapper->render(array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)))
(vendor/twig/twig/src/Environment.php:333)
at Twig\Environment->render('@Portal/Service/body-repair-category.html.twig', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)))
(vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('@Portal/Service/body-repair-category.html.twig', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)))
(vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('@Portal/Service/body-repair-category.html.twig', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)), object(Response))
(src/PortalBundle/Controller/BaseController.php:84)
at PortalBundle\Controller\BaseController->basePortalRender('@Portal/Service/body-repair-category.html.twig', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/', 'announcementBar' => object(AnnouncementBar)), object(Response))
(src/PortalBundle/Controller/ServiceController.php:111)
at PortalBundle\Controller\ServiceController->serviceRender('@Portal/Service/body-repair-category.html.twig', array('dealer' => object(Dealer), 'serviceActions' => array(), 'category' => object(BodyRepairCategory), 'subCategories' => array(object(BodyRepairCategory), object(BodyRepairCategory)), 'repairPhotoForm' => object(FormView), 'backLoginUrl' => 'https://dev02.vidi.ua/ru/service/body-repair/repair-aluminum', 'countCompare' => '', 'seoMeta' => array('title' => null, 'description' => null, 'descriptionAll' => null, 'h1' => null, 'robots' => null), 'privacyUrl' => '/ru/privacy-policy', 'isSubdomainShop' => false, 'forms' => array('supportForm' => object(FormView)), 'globalBrands' => array(array('name' => 'Citroen', 'url' => '/ru/new-car/citroen/'), array('name' => 'Ford', 'url' => '/ru/new-car/ford/'), array('name' => 'Honda', 'url' => '/ru/new-car/honda/'), array('name' => 'INFINITI', 'url' => '/ru/new-car/infiniti/'), array('name' => 'Jeep', 'url' => '/ru/new-car/jeep/'), array('name' => 'LAND ROVER', 'url' => '/ru/new-car/land-rover/'), array('name' => 'Lexus', 'url' => '/ru/new-car/lexus/'), array('name' => 'Maxus', 'url' => '/ru/new-car/maxus/'), array('name' => 'Mazda', 'url' => '/ru/new-car/mazda/'), array('name' => 'MG', 'url' => '/ru/new-car/mg/'), array('name' => 'Nissan', 'url' => '/ru/new-car/nissan/'), array('name' => 'Opel', 'url' => '/ru/new-car/opel/'), array('name' => 'Peugeot', 'url' => '/ru/new-car/peugeot/'), array('name' => 'Subaru', 'url' => '/ru/new-car/subaru/'), array('name' => 'Suzuki', 'url' => '/ru/new-car/suzuki/'), array('name' => 'Toyota', 'url' => '/ru/new-car/toyota/'), array('name' => 'Volvo', 'url' => '/ru/new-car/volvo/')), 'vehicleType' => object(VehicleType), 'catalogUrl' => '/ru/new-car/all/'))
(src/PortalBundle/Controller/ServiceController.php:232)
at PortalBundle\Controller\ServiceController->bodyRepairCategory(object(Request), object(EntityManager))
(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:19)
|