Symfony Exception

RuntimeError

HTTP 500 Internal Server Error

Impossible to access an attribute ("meta") on a null variable.

Exception

Twig\Error\ RuntimeError

  1. {% extends 'application/layout.html.twig' %}
  2.   {% block meta %}
  3.       {% include 'application/components/_meta.html.twig' with
  4.           {
  5.               'title': (category.meta.title) ? category.meta.title : category.title,
  6.               'image': (category.meta.image) ? category.meta.image : category.image,
  7.               'description': (category.meta.description) ? category.meta.description : category.content,
  8.               'keywords': (category.meta.keywords) ? category.meta.keywords : null
  9.           } %}
  10.   {% endblock %}
  1.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "block""meta"));
  2.         // line 4
  3.         echo "      ";
  4.         $this->loadTemplate("application/components/_meta.html.twig""shop/app/product/list1.html.twig"4)->display(twig_array_merge($context, ["title" => ((twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source,         // line 6
  5. (isset($context["category"]) || array_key_exists("category"$context) ? $context["category"] : (function () { throw new RuntimeError('Variable "category" does not exist.'6$this->source); })()), "meta", [], "any"falsefalsefalse6), "title", [], "any"falsefalsefalse6)) ? (twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["category"]) || array_key_exists("category"$context) ? $context["category"] : (function () { throw new RuntimeError('Variable "category" does not exist.'6$this->source); })()), "meta", [], "any"falsefalsefalse6), "title", [], "any"falsefalsefalse6)) : (twig_get_attribute($this->env$this->source, (isset($context["category"]) || array_key_exists("category"$context) ? $context["category"] : (function () { throw new RuntimeError('Variable "category" does not exist.'6$this->source); })()), "title", [], "any"falsefalsefalse6))), "image" => ((twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source,         // line 7
  6. (isset($context["category"]) || array_key_exists("category"$context) ? $context["category"] : (function () { throw new RuntimeError('Variable "category" does not exist.'7$this->source); })()), "meta", [], "any"falsefalsefalse7), "image", [], "any"falsefalsefalse7)) ? (twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["category"]) || array_key_exists("category"$context) ? $context["category"] : (function () { throw new RuntimeError('Variable "category" does not exist.'7$this->source); })()), "meta", [], "any"falsefalsefalse7), "image", [], "any"falsefalsefalse7)) : (twig_get_attribute($this->env$this->source, (isset($context["category"]) || array_key_exists("category"$context) ? $context["category"] : (function () { throw new RuntimeError('Variable "category" does not exist.'7$this->source); })()), "image", [], "any"falsefalsefalse7))), "description" => ((twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source,         // line 8
  7. (isset($context["category"]) || array_key_exists("category"$context) ? $context["category"] : (function () { throw new RuntimeError('Variable "category" does not exist.'8$this->source); })()), "meta", [], "any"falsefalsefalse8), "description", [], "any"falsefalsefalse8)) ? (twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["category"]) || array_key_exists("category"$context) ? $context["category"] : (function () { throw new RuntimeError('Variable "category" does not exist.'8$this->source); })()), "meta", [], "any"falsefalsefalse8), "description", [], "any"falsefalsefalse8)) : (twig_get_attribute($this->env$this->source, (isset($context["category"]) || array_key_exists("category"$context) ? $context["category"] : (function () { throw new RuntimeError('Variable "category" does not exist.'8$this->source); })()), "content", [], "any"falsefalsefalse8))), "keywords" => ((twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source,         // line 9
  8. (isset($context["category"]) || array_key_exists("category"$context) ? $context["category"] : (function () { throw new RuntimeError('Variable "category" does not exist.'9$this->source); })()), "meta", [], "any"falsefalsefalse9), "keywords", [], "any"falsefalsefalse9)) ? (twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["category"]) || array_key_exists("category"$context) ? $context["category"] : (function () { throw new RuntimeError('Variable "category" does not exist.'9$this->source); })()), "meta", [], "any"falsefalsefalse9), "keywords", [], "any"falsefalsefalse9)) : (null))]));
  9.         // line 11
  10.         echo "  ";
in vendor/twig/twig/src/Template.php->block_meta (line 182)
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1.         echo "\">
  2.     <head>
  3.         ";
  4.         // line 5
  5.         $this->displayBlock('meta'$context$blocks);
  6.         // line 8
  7.         echo "
  8.         ";
  9.         // line 9
  10.         $this->displayBlock('stylesheets'$context$blocks);
in vendor/twig/twig/src/Template.php->doDisplay (line 405)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php->displayWithErrorHandling (line 378)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.         $macros $this->macros;
  2.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  3.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""shop/app/product/list1.html.twig"));
  4.         $this->parent $this->loadTemplate("application/layout.html.twig""shop/app/product/list1.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.         
  7.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  8.     }
in vendor/twig/twig/src/Template.php->doDisplay (line 405)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php->displayWithErrorHandling (line 378)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php->display (line 390)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      *
  2.      * @throws Error if something went wrong like a thrown exception while rendering the template
  3.      */
  4.     public function render($name, array $parameters = [])
  5.     {
  6.         return $this->load($name)->render($parameters);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      *
  1.     protected function render(string $view, array $parameters = [], Response $response null): Response
  2.     {
  3.         if ($this->container->has('templating') && $this->container->get('templating')->supports($view)) {
  4.             @trigger_error('Using the "templating" service is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.', \E_USER_DEPRECATED);
  5.             $content $this->container->get('templating')->render($view$parameters);
  6.         } elseif ($this->container->has('twig')) {
  7.             $content $this->container->get('twig')->render($view$parameters);
  8.         } else {
  9.             throw new \LogicException('You can not use the "render" method if the Templating Component or the Twig Bundle are not available. Try running "composer require symfony/twig-bundle".');
  10.         }
AbstractController->render('shop/app/product/list1.html.twig', array('products' => array(), 'category' => null, 'categories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'filters' => array(), 'families' => array(object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family)), 'sortings' => array('abc' => 'ABC sorrend', 'new' => 'Legújabb', 'old' => 'Legrégebbi', 'exp' => 'Legdrágább', 'cheap' => 'Legolcsóbb'))) in src/Controller/Shop/Catalog/ProductController.php (line 299)
  1.             'products' => $products,
  2.             'category' => $existCategory,
  3.             'categories' => $categoryRepository->showAllParent($request->getLocale()),
  4.             'filters' => $filters,
  5.             'families' => $familyRepository->findAll(),
  6.             'sortings' => $sortings
  7.         ]);
  8.     }
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 24)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs

No log messages

Stack Trace

RuntimeError

Twig\Error\RuntimeError:
Impossible to access an attribute ("meta") on a null variable.

  at templates/shop/app/product/list1.html.twig:6
  at twig_get_attribute(object(Environment), object(Source), null, 'meta', array(), 'any', false, false, false, 6)
     (var/cache/app/twig/47/47c389462909e0dfe6274a9b7381b01168ad88a425b5a0a3cd85dcb85f007296.php:63)
  at __TwigTemplate_0503b2bd8f9d9193470c800b30e7c446ae6e0880bf84860a4bc8d80c886869a1->block_meta(array('products' => array(), 'category' => null, 'categories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'filters' => array(), 'families' => array(object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family)), 'sortings' => array('abc' => 'ABC sorrend', 'new' => 'Legújabb', 'old' => 'Legrégebbi', 'exp' => 'Legdrágább', 'cheap' => 'Legolcsóbb'), 'app' => object(AppVariable), 'extension' => object(Extension), 'owner' => object(Owner), 'cart' => object(Cart), 'page' => object(Page), 'blockService' => object(Block)), array('meta' => array(object(__TwigTemplate_0503b2bd8f9d9193470c800b30e7c446ae6e0880bf84860a4bc8d80c886869a1), 'block_meta'), 'stylesheets' => array(object(__TwigTemplate_3473fbaf8f925ff31c61c5ef10d4af799f9191e630de168cb1379616e1e34531), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_0503b2bd8f9d9193470c800b30e7c446ae6e0880bf84860a4bc8d80c886869a1), 'block_body'), 'javascript_vendor' => array(object(__TwigTemplate_3473fbaf8f925ff31c61c5ef10d4af799f9191e630de168cb1379616e1e34531), 'block_javascript_vendor'), 'javascript_component' => array(object(__TwigTemplate_3473fbaf8f925ff31c61c5ef10d4af799f9191e630de168cb1379616e1e34531), 'block_javascript_component'), 'javascript_init' => array(object(__TwigTemplate_3473fbaf8f925ff31c61c5ef10d4af799f9191e630de168cb1379616e1e34531), 'block_javascript_init')))
     (vendor/twig/twig/src/Template.php:182)
  at Twig\Template->displayBlock('meta', array('products' => array(), 'category' => null, 'categories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'filters' => array(), 'families' => array(object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family)), 'sortings' => array('abc' => 'ABC sorrend', 'new' => 'Legújabb', 'old' => 'Legrégebbi', 'exp' => 'Legdrágább', 'cheap' => 'Legolcsóbb'), 'app' => object(AppVariable), 'extension' => object(Extension), 'owner' => object(Owner), 'cart' => object(Cart), 'page' => object(Page), 'blockService' => object(Block)), array('meta' => array(object(__TwigTemplate_0503b2bd8f9d9193470c800b30e7c446ae6e0880bf84860a4bc8d80c886869a1), 'block_meta'), 'stylesheets' => array(object(__TwigTemplate_3473fbaf8f925ff31c61c5ef10d4af799f9191e630de168cb1379616e1e34531), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_0503b2bd8f9d9193470c800b30e7c446ae6e0880bf84860a4bc8d80c886869a1), 'block_body'), 'javascript_vendor' => array(object(__TwigTemplate_3473fbaf8f925ff31c61c5ef10d4af799f9191e630de168cb1379616e1e34531), 'block_javascript_vendor'), 'javascript_component' => array(object(__TwigTemplate_3473fbaf8f925ff31c61c5ef10d4af799f9191e630de168cb1379616e1e34531), 'block_javascript_component'), 'javascript_init' => array(object(__TwigTemplate_3473fbaf8f925ff31c61c5ef10d4af799f9191e630de168cb1379616e1e34531), 'block_javascript_init')))
     (var/cache/app/twig/73/732cb358d0e9556d5709777fdb044821aad763f9815985f6e2a7dda28aa5eec8.php:55)
  at __TwigTemplate_3473fbaf8f925ff31c61c5ef10d4af799f9191e630de168cb1379616e1e34531->doDisplay(array('products' => array(), 'category' => null, 'categories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'filters' => array(), 'families' => array(object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family)), 'sortings' => array('abc' => 'ABC sorrend', 'new' => 'Legújabb', 'old' => 'Legrégebbi', 'exp' => 'Legdrágább', 'cheap' => 'Legolcsóbb'), 'app' => object(AppVariable), 'extension' => object(Extension), 'owner' => object(Owner), 'cart' => object(Cart), 'page' => object(Page), 'blockService' => object(Block)), array('meta' => array(object(__TwigTemplate_0503b2bd8f9d9193470c800b30e7c446ae6e0880bf84860a4bc8d80c886869a1), 'block_meta'), 'stylesheets' => array(object(__TwigTemplate_3473fbaf8f925ff31c61c5ef10d4af799f9191e630de168cb1379616e1e34531), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_0503b2bd8f9d9193470c800b30e7c446ae6e0880bf84860a4bc8d80c886869a1), 'block_body'), 'javascript_vendor' => array(object(__TwigTemplate_3473fbaf8f925ff31c61c5ef10d4af799f9191e630de168cb1379616e1e34531), 'block_javascript_vendor'), 'javascript_component' => array(object(__TwigTemplate_3473fbaf8f925ff31c61c5ef10d4af799f9191e630de168cb1379616e1e34531), 'block_javascript_component'), 'javascript_init' => array(object(__TwigTemplate_3473fbaf8f925ff31c61c5ef10d4af799f9191e630de168cb1379616e1e34531), 'block_javascript_init')))
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling(array('products' => array(), 'category' => null, 'categories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'filters' => array(), 'families' => array(object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family)), 'sortings' => array('abc' => 'ABC sorrend', 'new' => 'Legújabb', 'old' => 'Legrégebbi', 'exp' => 'Legdrágább', 'cheap' => 'Legolcsóbb'), 'app' => object(AppVariable), 'extension' => object(Extension), 'owner' => object(Owner), 'cart' => object(Cart), 'page' => object(Page), 'blockService' => object(Block)), array('meta' => array(object(__TwigTemplate_0503b2bd8f9d9193470c800b30e7c446ae6e0880bf84860a4bc8d80c886869a1), 'block_meta'), 'stylesheets' => array(object(__TwigTemplate_3473fbaf8f925ff31c61c5ef10d4af799f9191e630de168cb1379616e1e34531), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_0503b2bd8f9d9193470c800b30e7c446ae6e0880bf84860a4bc8d80c886869a1), 'block_body'), 'javascript_vendor' => array(object(__TwigTemplate_3473fbaf8f925ff31c61c5ef10d4af799f9191e630de168cb1379616e1e34531), 'block_javascript_vendor'), 'javascript_component' => array(object(__TwigTemplate_3473fbaf8f925ff31c61c5ef10d4af799f9191e630de168cb1379616e1e34531), 'block_javascript_component'), 'javascript_init' => array(object(__TwigTemplate_3473fbaf8f925ff31c61c5ef10d4af799f9191e630de168cb1379616e1e34531), 'block_javascript_init')))
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display(array('products' => array(), 'category' => null, 'categories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'filters' => array(), 'families' => array(object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family)), 'sortings' => array('abc' => 'ABC sorrend', 'new' => 'Legújabb', 'old' => 'Legrégebbi', 'exp' => 'Legdrágább', 'cheap' => 'Legolcsóbb'), 'app' => object(AppVariable), 'extension' => object(Extension), 'owner' => object(Owner), 'cart' => object(Cart), 'page' => object(Page), 'blockService' => object(Block)), array('meta' => array(object(__TwigTemplate_0503b2bd8f9d9193470c800b30e7c446ae6e0880bf84860a4bc8d80c886869a1), 'block_meta'), 'body' => array(object(__TwigTemplate_0503b2bd8f9d9193470c800b30e7c446ae6e0880bf84860a4bc8d80c886869a1), 'block_body')))
     (var/cache/app/twig/47/47c389462909e0dfe6274a9b7381b01168ad88a425b5a0a3cd85dcb85f007296.php:47)
  at __TwigTemplate_0503b2bd8f9d9193470c800b30e7c446ae6e0880bf84860a4bc8d80c886869a1->doDisplay(array('products' => array(), 'category' => null, 'categories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'filters' => array(), 'families' => array(object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family)), 'sortings' => array('abc' => 'ABC sorrend', 'new' => 'Legújabb', 'old' => 'Legrégebbi', 'exp' => 'Legdrágább', 'cheap' => 'Legolcsóbb'), 'app' => object(AppVariable), 'extension' => object(Extension), 'owner' => object(Owner), 'cart' => object(Cart), 'page' => object(Page), 'blockService' => object(Block)), array('meta' => array(object(__TwigTemplate_0503b2bd8f9d9193470c800b30e7c446ae6e0880bf84860a4bc8d80c886869a1), 'block_meta'), 'body' => array(object(__TwigTemplate_0503b2bd8f9d9193470c800b30e7c446ae6e0880bf84860a4bc8d80c886869a1), 'block_body')))
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling(array('products' => array(), 'category' => null, 'categories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'filters' => array(), 'families' => array(object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family)), 'sortings' => array('abc' => 'ABC sorrend', 'new' => 'Legújabb', 'old' => 'Legrégebbi', 'exp' => 'Legdrágább', 'cheap' => 'Legolcsóbb'), 'app' => object(AppVariable), 'extension' => object(Extension), 'owner' => object(Owner), 'cart' => object(Cart), 'page' => object(Page), 'blockService' => object(Block)), array('meta' => array(object(__TwigTemplate_0503b2bd8f9d9193470c800b30e7c446ae6e0880bf84860a4bc8d80c886869a1), 'block_meta'), 'body' => array(object(__TwigTemplate_0503b2bd8f9d9193470c800b30e7c446ae6e0880bf84860a4bc8d80c886869a1), 'block_body')))
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display(array('products' => array(), 'category' => null, 'categories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'filters' => array(), 'families' => array(object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family)), 'sortings' => array('abc' => 'ABC sorrend', 'new' => 'Legújabb', 'old' => 'Legrégebbi', 'exp' => 'Legdrágább', 'cheap' => 'Legolcsóbb')))
     (vendor/twig/twig/src/Template.php:390)
  at Twig\Template->render(array('products' => array(), 'category' => null, 'categories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'filters' => array(), 'families' => array(object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family)), 'sortings' => array('abc' => 'ABC sorrend', 'new' => 'Legújabb', 'old' => 'Legrégebbi', 'exp' => 'Legdrágább', 'cheap' => 'Legolcsóbb')))
     (vendor/symfony/twig-bridge/TwigEngine.php:54)
  at Symfony\Bridge\Twig\TwigEngine->render('shop/app/product/list1.html.twig', array('products' => array(), 'category' => null, 'categories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'filters' => array(), 'families' => array(object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family)), 'sortings' => array('abc' => 'ABC sorrend', 'new' => 'Legújabb', 'old' => 'Legrégebbi', 'exp' => 'Legdrágább', 'cheap' => 'Legolcsóbb')))
     (vendor/symfony/framework-bundle/Controller/ControllerTrait.php:233)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('shop/app/product/list1.html.twig', array('products' => array(), 'category' => null, 'categories' => array(object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category), object(Category)), 'filters' => array(), 'families' => array(object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family), object(Family)), 'sortings' => array('abc' => 'ABC sorrend', 'new' => 'Legújabb', 'old' => 'Legrégebbi', 'exp' => 'Legdrágább', 'cheap' => 'Legolcsóbb')))
     (src/Controller/Shop/Catalog/ProductController.php:299)
  at App\Controller\Shop\Catalog\ProductController->category(object(Request), object(ProductRepository), object(CategoryRepository), object(AttributeRepository), object(VariationRepository), object(BrandRepository), object(StockRepository), object(FamilyRepository), object(Paginator))
     (vendor/symfony/http-kernel/HttpKernel.php:158)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:80)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:201)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:24)