https://racket-trip.eu/pt/blog/articles/test-article-publication-complete-2edddaz-portugues

Exceptions

An exception has been thrown during the rendering of a template ("Call to a member function getTitle() on null").

Exceptions 2

Twig\Error\ RuntimeError

  1.         <img loading="lazy" src="{{asset('/images/blog/' ~ article.cover) }}" alt="{{ article.altCover }}"/>
  2.         <div class="categories-wrap">
  3.             {% for category in article.categories %}
  4.                 {% if loop.index <= 2 %}
  5.                     {% set articleCategoryInfos = articleCategoryInfos(category, app.request.locale) %}
  6.                     <a href="{{ articleCategoryInfos.link }}" class="category-item">{{ articleCategoryInfos.title }}</a>
  7.                 {% endif %}
  8.             {% endfor %}
  9.         </div>
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  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.             foreach ($context['_seq'] as $context["_key"] => $context["article"]) {
  2.                 // line 101
  3.                 echo "                                        <div class=\"col-12 blog-col\">
  4.                                             ";
  5.                 // line 102
  6.                 $this->loadTemplate("front/blog/_blog-card.html.twig""front/blog/article.html.twig"102)->display($context);
  7.                 // line 103
  8.                 echo "                                        </div>
  9.                                     ";
  10.                 ++$context['loop']['index0'];
  11.                 ++$context['loop']['index'];
in vendor/twig/twig/src/Template.php -> block_body (line 171)
  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.         $this->loadTemplate("front/_partials/_header.html.twig""front/base.html.twig"85)->display($context);
  2.         // line 86
  3.         echo "
  4.         ";
  5.         // line 87
  6.         $this->displayBlock('body'$context$blocks);
  7.         // line 88
  8.         echo "
  9. \t    ";
  10.         // line 89
  11.         $this->loadTemplate("front/_partials/_add-favorite-modal.html.twig""front/base.html.twig"89)->display($context);
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  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 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  2.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""front/blog/article.html.twig"));
  3.         $this->parent $this->loadTemplate("front/base.html.twig""front/blog/article.html.twig"1);
  4.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  5.         
  6.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  7.         
  8.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  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 367)
  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 379)
  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.         $this->template $template;
  2.     }
  3.     public function render(array $context = []): string
  4.     {
  5.         return $this->template->render($context);
  6.     }
  7.     public function display(array $context = [])
  8.     {
  9.         // using func_get_args() allows to not expose the blocks argument
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     {
  2.         if (!$this->container->has('twig')) {
  3.             throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      */
  1.     /**
  2.      * Renders a view.
  3.      */
  4.     protected function render(string $view, array $parameters = [], ?Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         if (null === $response) {
  8.             $response = new Response();
  9.         }
AbstractController->render('front/blog/article.html.twig', array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false)) in src/Controller/Front/BlogController.php (line 229)
  1.             }
  2.         }
  3.         
  4.         return $this->render('front/blog/article.html.twig', [
  5.             'menu' => 'blog',
  6.             'moreArticles' => $moreArticles,
  7.             'article' => $article,
  8.             'form' => $form->createView(),
  9.             'preview' => false
  10.         ]);
in vendor/symfony/http-kernel/HttpKernel.php -> showArticle (line 163)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
in vendor/autoload_runtime.php -> run (line 35)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/preprod/racket-trip/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Error

Call to a member function getTitle() on null

  1.         $language $this->websiteLanguageRepository->findOneBy(['slug' => $locale]);
  2.         $categoryTranslated $this->categoryRepository->findOneBy(['unit' => $category->getUnit(), 'websiteLanguage' => $language]);
  3.         return [
  4.             'title' => $categoryTranslated->getTitle(),
  5.             'link' => $this->router->generate('article_category', ['slug' => $categoryTranslated->getSlug()])
  6.         ];
  7.     }
  8.     public function haveCommonIntership(User $owner$partner)
  1.             if ((twig_get_attribute($this->env$this->source$context["loop"], "index", [], "any"falsefalsefalse7) <= 2)) {
  2.                 // line 8
  3.                 echo "
  4. \t\t\t\t\t";
  5.                 // line 9
  6.                 $context["articleCategoryInfos"] = $this->extensions['App\Twig\AppExtension']->articleCategoryInfos($context["category"], twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["app"]) || array_key_exists("app"$context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.'9$this->source); })()), "request", [], "any"falsefalsefalse9), "locale", [], "any"falsefalsefalse9));
  7.                 // line 10
  8.                 echo "
  9. \t\t\t\t\t<a href=\"";
  10.                 // line 11
  11.                 echo twig_escape_filter($this->envtwig_get_attribute($this->env$this->source, (isset($context["articleCategoryInfos"]) || array_key_exists("articleCategoryInfos"$context) ? $context["articleCategoryInfos"] : (function () { throw new RuntimeError('Variable "articleCategoryInfos" does not exist.'11$this->source); })()), "link", [], "any"falsefalsefalse11), "html"nulltrue);
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  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 367)
  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.             foreach ($context['_seq'] as $context["_key"] => $context["article"]) {
  2.                 // line 101
  3.                 echo "                                        <div class=\"col-12 blog-col\">
  4.                                             ";
  5.                 // line 102
  6.                 $this->loadTemplate("front/blog/_blog-card.html.twig""front/blog/article.html.twig"102)->display($context);
  7.                 // line 103
  8.                 echo "                                        </div>
  9.                                     ";
  10.                 ++$context['loop']['index0'];
  11.                 ++$context['loop']['index'];
in vendor/twig/twig/src/Template.php -> block_body (line 171)
  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.         $this->loadTemplate("front/_partials/_header.html.twig""front/base.html.twig"85)->display($context);
  2.         // line 86
  3.         echo "
  4.         ";
  5.         // line 87
  6.         $this->displayBlock('body'$context$blocks);
  7.         // line 88
  8.         echo "
  9. \t    ";
  10.         // line 89
  11.         $this->loadTemplate("front/_partials/_add-favorite-modal.html.twig""front/base.html.twig"89)->display($context);
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  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 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  2.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""front/blog/article.html.twig"));
  3.         $this->parent $this->loadTemplate("front/base.html.twig""front/blog/article.html.twig"1);
  4.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  5.         
  6.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  7.         
  8.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  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 367)
  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 379)
  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.         $this->template $template;
  2.     }
  3.     public function render(array $context = []): string
  4.     {
  5.         return $this->template->render($context);
  6.     }
  7.     public function display(array $context = [])
  8.     {
  9.         // using func_get_args() allows to not expose the blocks argument
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     {
  2.         if (!$this->container->has('twig')) {
  3.             throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      */
  1.     /**
  2.      * Renders a view.
  3.      */
  4.     protected function render(string $view, array $parameters = [], ?Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         if (null === $response) {
  8.             $response = new Response();
  9.         }
AbstractController->render('front/blog/article.html.twig', array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false)) in src/Controller/Front/BlogController.php (line 229)
  1.             }
  2.         }
  3.         
  4.         return $this->render('front/blog/article.html.twig', [
  5.             'menu' => 'blog',
  6.             'moreArticles' => $moreArticles,
  7.             'article' => $article,
  8.             'form' => $form->createView(),
  9.             'preview' => false
  10.         ]);
in vendor/symfony/http-kernel/HttpKernel.php -> showArticle (line 163)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
in vendor/autoload_runtime.php -> run (line 35)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/preprod/racket-trip/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs

Level Channel Message
INFO 10:59:42 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "5ab036"
    },
    "request_uri": "https://racket-trip.eu/_profiler/5ab036?panel=exception",
    "method": "GET"
}

Stack Traces 2

[2/2] RuntimeError
Twig\Error\RuntimeError:
An exception has been thrown during the rendering of a template ("Call to a member function getTitle() on null").

  at templates/front/blog/_blog-card.html.twig:9
  at Twig\Template->displayWithErrorHandling(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article', '_parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), '_seq' => array(object(Article), object(Article)), 'loop' => array('parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 1, 'revindex' => 2, 'length' => 2, 'last' => false), '_key' => 0), array())
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article', '_parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), '_seq' => array(object(Article), object(Article)), 'loop' => array('parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 1, 'revindex' => 2, 'length' => 2, 'last' => false), '_key' => 0))
     (var/cache/dev/twig/6c/6ca734e28c602f82f49c554f0de4ddbd.php:351)
  at __TwigTemplate_6a5c10fee962ed321863a7b4c38780aa->block_body(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article', '_parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), '_seq' => array(object(Article), object(Article)), 'loop' => array('parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 1, 'revindex' => 2, 'length' => 2, 'last' => false), '_key' => 0), array('title' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_title'), 'seo' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_seo'), 'og' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_og'), 'stylesheets' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_body'), 'javascript' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_javascript')))
     (vendor/twig/twig/src/Template.php:171)
  at Twig\Template->displayBlock('body', array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), array('title' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_title'), 'seo' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_seo'), 'og' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_og'), 'stylesheets' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_body'), 'javascript' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_javascript')))
     (var/cache/dev/twig/55/55669510c38230dfcd6ab33f309c4514.php:185)
  at __TwigTemplate_52a36eda23a03b9586690e966c0412fd->doDisplay(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), array('title' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_title'), 'seo' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_seo'), 'og' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_og'), 'stylesheets' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_body'), 'javascript' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_javascript')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable)), array('title' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_title'), 'seo' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_seo'), 'og' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_og'), 'stylesheets' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_body'), 'javascript' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_javascript')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable)), array('title' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_title'), 'seo' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_seo'), 'og' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_og'), 'body' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_body')))
     (var/cache/dev/twig/6c/6ca734e28c602f82f49c554f0de4ddbd.php:51)
  at __TwigTemplate_6a5c10fee962ed321863a7b4c38780aa->doDisplay(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable)), array('title' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_title'), 'seo' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_seo'), 'og' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_og'), 'body' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_body')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable)), array('title' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_title'), 'seo' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_seo'), 'og' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_og'), 'body' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_body')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false))
     (vendor/twig/twig/src/Template.php:379)
  at Twig\Template->render(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false))
     (vendor/twig/twig/src/TemplateWrapper.php:38)
  at Twig\TemplateWrapper->render(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false))
     (vendor/twig/twig/src/Environment.php:280)
  at Twig\Environment->render('front/blog/article.html.twig', array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('front/blog/article.html.twig', array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('front/blog/article.html.twig', array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false))
     (src/Controller/Front/BlogController.php:229)
  at App\Controller\Front\BlogController->showArticle('test-article-publication-complete-2edddaz-portugues', object(ArticleRepository), object(Request), object(EntityManager_9a5be93), object(AdminRepository), object(ToAdmin))
     (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))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:35)
  at require_once('/var/www/preprod/racket-trip/vendor/autoload_runtime.php')
     (public/index.php:5)                
[1/2] Error
Error:
Call to a member function getTitle() on null

  at src/Twig/AppExtension.php:200
  at App\Twig\AppExtension->articleCategoryInfos(object(Category), 'pt')
     (var/cache/dev/twig/9c/9c6ec5af7ffa30906bb997a98d1a643b.php:81)
  at __TwigTemplate_643e8ee63a3b963e084d32d6f3910e84->doDisplay(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article', '_parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article', '_parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), '_seq' => array(object(Article), object(Article)), 'loop' => array('parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 1, 'revindex' => 2, 'length' => 2, 'last' => false), '_key' => 0), '_seq' => object(PersistentCollection), 'loop' => array('parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article', '_parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), '_seq' => array(object(Article), object(Article)), 'loop' => array('parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 1, 'revindex' => 2, 'length' => 2, 'last' => false), '_key' => 0), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 0, 'revindex' => 1, 'length' => 1, 'last' => true), '_key' => 0, 'category' => object(Category)), array())
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article', '_parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), '_seq' => array(object(Article), object(Article)), 'loop' => array('parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 1, 'revindex' => 2, 'length' => 2, 'last' => false), '_key' => 0), array())
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article', '_parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), '_seq' => array(object(Article), object(Article)), 'loop' => array('parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 1, 'revindex' => 2, 'length' => 2, 'last' => false), '_key' => 0))
     (var/cache/dev/twig/6c/6ca734e28c602f82f49c554f0de4ddbd.php:351)
  at __TwigTemplate_6a5c10fee962ed321863a7b4c38780aa->block_body(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article', '_parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), '_seq' => array(object(Article), object(Article)), 'loop' => array('parent' => array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 1, 'revindex' => 2, 'length' => 2, 'last' => false), '_key' => 0), array('title' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_title'), 'seo' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_seo'), 'og' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_og'), 'stylesheets' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_body'), 'javascript' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_javascript')))
     (vendor/twig/twig/src/Template.php:171)
  at Twig\Template->displayBlock('body', array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), array('title' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_title'), 'seo' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_seo'), 'og' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_og'), 'stylesheets' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_body'), 'javascript' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_javascript')))
     (var/cache/dev/twig/55/55669510c38230dfcd6ab33f309c4514.php:185)
  at __TwigTemplate_52a36eda23a03b9586690e966c0412fd->doDisplay(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'show_article'), array('title' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_title'), 'seo' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_seo'), 'og' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_og'), 'stylesheets' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_body'), 'javascript' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_javascript')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable)), array('title' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_title'), 'seo' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_seo'), 'og' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_og'), 'stylesheets' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_body'), 'javascript' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_javascript')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable)), array('title' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_title'), 'seo' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_seo'), 'og' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_og'), 'body' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_body')))
     (var/cache/dev/twig/6c/6ca734e28c602f82f49c554f0de4ddbd.php:51)
  at __TwigTemplate_6a5c10fee962ed321863a7b4c38780aa->doDisplay(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable)), array('title' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_title'), 'seo' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_seo'), 'og' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_og'), 'body' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_body')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable)), array('title' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_title'), 'seo' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_seo'), 'og' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_og'), 'body' => array(object(__TwigTemplate_6a5c10fee962ed321863a7b4c38780aa), 'block_body')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false))
     (vendor/twig/twig/src/Template.php:379)
  at Twig\Template->render(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false))
     (vendor/twig/twig/src/TemplateWrapper.php:38)
  at Twig\TemplateWrapper->render(array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false))
     (vendor/twig/twig/src/Environment.php:280)
  at Twig\Environment->render('front/blog/article.html.twig', array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('front/blog/article.html.twig', array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('front/blog/article.html.twig', array('menu' => 'blog', 'moreArticles' => array(object(Article), object(Article)), 'article' => object(Article), 'form' => object(FormView), 'preview' => false))
     (src/Controller/Front/BlogController.php:229)
  at App\Controller\Front\BlogController->showArticle('test-article-publication-complete-2edddaz-portugues', object(ArticleRepository), object(Request), object(EntityManager_9a5be93), object(AdminRepository), object(ToAdmin))
     (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))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:35)
  at require_once('/var/www/preprod/racket-trip/vendor/autoload_runtime.php')
     (public/index.php:5)