Exceptions
Exceptions 2
Twig\Error\ RuntimeError
in
templates/front/blog/_blog-card.html.twig
(line 9)
<img loading="lazy" src="{{asset('/images/blog/' ~ article.cover) }}" alt="{{ article.altCover }}"/>
<div class="categories-wrap">
{% for category in article.categories %}
{% if loop.index <= 2 %}
{% set articleCategoryInfos = articleCategoryInfos(category, app.request.locale) %}
<a href="{{ articleCategoryInfos.link }}" class="category-item">{{ articleCategoryInfos.title }}</a>
{% endif %}
{% endfor %}
</div>
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
var/cache/dev/twig/18/1883c81c3d24fa7e669b2b4dd20f025d.php
->
display
(line 285)
foreach ($context['_seq'] as $context["_key"] => $context["article"]) {
// line 71
echo "\t\t\t\t\t\t<div class=\"col-xl-3 col-lg-4 col-md-6 col-sm-12 blog-col\">
\t\t\t\t\t\t\t";
// line 72
$this->loadTemplate("front/blog/_blog-card.html.twig", "front/blog/index.html.twig", 72)->display($context);
// line 73
echo "\t\t\t\t\t\t</div>
\t\t\t\t\t";
++$context['loop']['index0'];
++$context['loop']['index'];
in
vendor/twig/twig/src/Template.php
->
block_body
(line 171)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');
}
if (null !== $template) {
try {
$template->$block($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($template->getSourceContext());
}
in
var/cache/dev/twig/55/55669510c38230dfcd6ab33f309c4514.php
->
displayBlock
(line 185)
$this->loadTemplate("front/_partials/_header.html.twig", "front/base.html.twig", 85)->display($context);
// line 86
echo "
";
// line 87
$this->displayBlock('body', $context, $blocks);
// line 88
echo "
\t ";
// line 89
$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)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
var/cache/dev/twig/18/1883c81c3d24fa7e669b2b4dd20f025d.php
->
display
(line 50)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "front/blog/index.html.twig"));
$this->parent = $this->loadTemplate("front/base.html.twig", "front/blog/index.html.twig", 1);
$this->parent->display($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 394)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
vendor/twig/twig/src/Template.php
->
display
(line 379)
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 38)
$this->template = $template;
}
public function render(array $context = []): string
{
return $this->template->render($context);
}
public function display(array $context = [])
{
// using func_get_args() allows to not expose the blocks argument
in
vendor/twig/twig/src/Environment.php
->
render
(line 280)
* @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('front/blog/index.html.twig', array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null))
in
src/Controller/Front/BlogController.php
(line 79)
'featured' => $featured,
'latest' => $latest,
'form' => $form->createView(),
'title' => $title,
'categories' => $categories,
'articles' => $articles
]);
}
#[Route(path: '/latest-news', name: 'latest_news')]
public function latestNews(ArticleRepository $articleRepository, Request $request, PaginatorInterface $paginator): Response
in
vendor/symfony/http-kernel/HttpKernel.php
->
blog
(line 163)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
$this->request = $request;
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
$response->send();
if ($this->kernel instanceof TerminableInterface) {
$this->kernel->terminate($this->request, $response);
}
in
vendor/autoload_runtime.php
->
run
(line 35)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/var/www/preprod/racket-trip/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
Error
in
src/Twig/AppExtension.php
(line 200)
$language = $this->websiteLanguageRepository->findOneBy(['slug' => $locale]);
$categoryTranslated = $this->categoryRepository->findOneBy(['unit' => $category->getUnit(), 'websiteLanguage' => $language]);
return [
'title' => $categoryTranslated->getTitle(),
'link' => $this->router->generate('article_category', ['slug' => $categoryTranslated->getSlug()])
];
}
public function haveCommonIntership(User $owner, $partner)
in
var/cache/dev/twig/9c/9c6ec5af7ffa30906bb997a98d1a643b.php
->
articleCategoryInfos
(line 81)
if ((twig_get_attribute($this->env, $this->source, $context["loop"], "index", [], "any", false, false, false, 7) <= 2)) {
// line 8
echo "
\t\t\t\t\t";
// line 9
$context["articleCategoryInfos"] = $this->extensions['App\Twig\AppExtension']->articleCategoryInfos($context["category"], twig_get_attribute($this->env, $this->source, twig_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", false, false, false, 9), "locale", [], "any", false, false, false, 9));
// line 10
echo "
\t\t\t\t\t<a href=\"";
// line 11
echo twig_escape_filter($this->env, twig_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", false, false, false, 11), "html", null, true);
in
vendor/twig/twig/src/Template.php
->
doDisplay
(line 394)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
var/cache/dev/twig/18/1883c81c3d24fa7e669b2b4dd20f025d.php
->
display
(line 285)
foreach ($context['_seq'] as $context["_key"] => $context["article"]) {
// line 71
echo "\t\t\t\t\t\t<div class=\"col-xl-3 col-lg-4 col-md-6 col-sm-12 blog-col\">
\t\t\t\t\t\t\t";
// line 72
$this->loadTemplate("front/blog/_blog-card.html.twig", "front/blog/index.html.twig", 72)->display($context);
// line 73
echo "\t\t\t\t\t\t</div>
\t\t\t\t\t";
++$context['loop']['index0'];
++$context['loop']['index'];
in
vendor/twig/twig/src/Template.php
->
block_body
(line 171)
throw new \LogicException('A block must be a method on a \Twig\Template instance.');
}
if (null !== $template) {
try {
$template->$block($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($template->getSourceContext());
}
in
var/cache/dev/twig/55/55669510c38230dfcd6ab33f309c4514.php
->
displayBlock
(line 185)
$this->loadTemplate("front/_partials/_header.html.twig", "front/base.html.twig", 85)->display($context);
// line 86
echo "
";
// line 87
$this->displayBlock('body', $context, $blocks);
// line 88
echo "
\t ";
// line 89
$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)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
var/cache/dev/twig/18/1883c81c3d24fa7e669b2b4dd20f025d.php
->
display
(line 50)
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "front/blog/index.html.twig"));
$this->parent = $this->loadTemplate("front/base.html.twig", "front/blog/index.html.twig", 1);
$this->parent->display($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 394)
}
protected function displayWithErrorHandling(array $context, array $blocks = [])
{
try {
$this->doDisplay($context, $blocks);
} catch (Error $e) {
if (!$e->getSourceContext()) {
$e->setSourceContext($this->getSourceContext());
}
in
vendor/twig/twig/src/Template.php
->
displayWithErrorHandling
(line 367)
return $this->blocks;
}
public function display(array $context, array $blocks = [])
{
$this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));
}
public function render(array $context)
{
$level = ob_get_level();
in
vendor/twig/twig/src/Template.php
->
display
(line 379)
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 38)
$this->template = $template;
}
public function render(array $context = []): string
{
return $this->template->render($context);
}
public function display(array $context = [])
{
// using func_get_args() allows to not expose the blocks argument
in
vendor/twig/twig/src/Environment.php
->
render
(line 280)
* @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('front/blog/index.html.twig', array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null))
in
src/Controller/Front/BlogController.php
(line 79)
'featured' => $featured,
'latest' => $latest,
'form' => $form->createView(),
'title' => $title,
'categories' => $categories,
'articles' => $articles
]);
}
#[Route(path: '/latest-news', name: 'latest_news')]
public function latestNews(ArticleRepository $articleRepository, Request $request, PaginatorInterface $paginator): Response
in
vendor/symfony/http-kernel/HttpKernel.php
->
blog
(line 163)
$this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
$controller = $event->getController();
$arguments = $event->getArguments();
// call controller
$response = $controller(...$arguments);
// view
if (!$response instanceof Response) {
$event = new ViewEvent($this, $request, $type, $response);
$this->dispatcher->dispatch($event, KernelEvents::VIEW);
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();
++$this->requestStackSize;
$this->resetServices = true;
try {
return $this->getHttpKernel()->handle($request, $type, $catch);
} finally {
--$this->requestStackSize;
}
}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
$this->request = $request;
}
public function run(): int
{
$response = $this->kernel->handle($this->request);
$response->send();
if ($this->kernel instanceof TerminableInterface) {
$this->kernel->terminate($this->request, $response);
}
in
vendor/autoload_runtime.php
->
run
(line 35)
$app = $app(...$args);
exit(
$runtime
->getRunner($app)
->run()
);
require_once('/var/www/preprod/racket-trip/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};
Logs
Level | Channel | Message |
---|---|---|
INFO 11:03:01 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "f49171" }, "request_uri": "https://racket-trip.eu/_profiler/f49171?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', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog', '_parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), '_seq' => array(object(Article), object(Article)), 'loop' => array('parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 1, 'revindex' => 2, 'length' => 2, 'last' => false), 'article' => object(Article), '_key' => 0), array()) (vendor/twig/twig/src/Template.php:367) at Twig\Template->display(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog', '_parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), '_seq' => array(object(Article), object(Article)), 'loop' => array('parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 1, 'revindex' => 2, 'length' => 2, 'last' => false), 'article' => object(Article), '_key' => 0)) (var/cache/dev/twig/18/1883c81c3d24fa7e669b2b4dd20f025d.php:285) at __TwigTemplate_63465b2a6077b2dfabd5b42098e713a2->block_body(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog', '_parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), '_seq' => array(object(Article), object(Article)), 'loop' => array('parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 1, 'revindex' => 2, 'length' => 2, 'last' => false), 'article' => object(Article), '_key' => 0), array('title' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_title'), 'seo' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_seo'), 'og' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_og'), 'stylesheets' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_body'), 'javascript' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_javascript'))) (vendor/twig/twig/src/Template.php:171) at Twig\Template->displayBlock('body', array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), array('title' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_title'), 'seo' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_seo'), 'og' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_og'), 'stylesheets' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_body'), 'javascript' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_javascript'))) (var/cache/dev/twig/55/55669510c38230dfcd6ab33f309c4514.php:185) at __TwigTemplate_52a36eda23a03b9586690e966c0412fd->doDisplay(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), array('title' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_title'), 'seo' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_seo'), 'og' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_og'), 'stylesheets' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_body'), 'javascript' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_javascript'))) (vendor/twig/twig/src/Template.php:394) at Twig\Template->displayWithErrorHandling(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable)), array('title' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_title'), 'seo' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_seo'), 'og' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_og'), 'stylesheets' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_body'), 'javascript' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_javascript'))) (vendor/twig/twig/src/Template.php:367) at Twig\Template->display(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable)), array('title' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_title'), 'seo' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_seo'), 'body' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_body'))) (var/cache/dev/twig/18/1883c81c3d24fa7e669b2b4dd20f025d.php:50) at __TwigTemplate_63465b2a6077b2dfabd5b42098e713a2->doDisplay(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable)), array('title' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_title'), 'seo' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_seo'), 'body' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_body'))) (vendor/twig/twig/src/Template.php:394) at Twig\Template->displayWithErrorHandling(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable)), array('title' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_title'), 'seo' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_seo'), 'body' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_body'))) (vendor/twig/twig/src/Template.php:367) at Twig\Template->display(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null)) (vendor/twig/twig/src/Template.php:379) at Twig\Template->render(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null)) (vendor/twig/twig/src/TemplateWrapper.php:38) at Twig\TemplateWrapper->render(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null)) (vendor/twig/twig/src/Environment.php:280) at Twig\Environment->render('front/blog/index.html.twig', array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null)) (vendor/symfony/framework-bundle/Controller/AbstractController.php:258) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('front/blog/index.html.twig', array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null)) (vendor/symfony/framework-bundle/Controller/AbstractController.php:266) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('front/blog/index.html.twig', array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null)) (src/Controller/Front/BlogController.php:79) at App\Controller\Front\BlogController->blog(object(ArticleRepository), object(CategoryRepository), object(Request), object(PaginatorInterface_82dac15), object(WebsiteLanguageRepository)) (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), 'sv') (var/cache/dev/twig/9c/9c6ec5af7ffa30906bb997a98d1a643b.php:81) at __TwigTemplate_643e8ee63a3b963e084d32d6f3910e84->doDisplay(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog', '_parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog', '_parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), '_seq' => array(object(Article), object(Article)), 'loop' => array('parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 1, 'revindex' => 2, 'length' => 2, 'last' => false), 'article' => object(Article), '_key' => 0), '_seq' => object(PersistentCollection), 'loop' => array('parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog', '_parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), '_seq' => array(object(Article), object(Article)), 'loop' => array('parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 1, 'revindex' => 2, 'length' => 2, 'last' => false), 'article' => object(Article), '_key' => 0), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 0, 'revindex' => 1, 'length' => 1, 'last' => true), 'article' => object(Article), '_key' => 0, 'category' => object(Category)), array()) (vendor/twig/twig/src/Template.php:394) at Twig\Template->displayWithErrorHandling(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog', '_parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), '_seq' => array(object(Article), object(Article)), 'loop' => array('parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 1, 'revindex' => 2, 'length' => 2, 'last' => false), 'article' => object(Article), '_key' => 0), array()) (vendor/twig/twig/src/Template.php:367) at Twig\Template->display(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog', '_parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), '_seq' => array(object(Article), object(Article)), 'loop' => array('parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 1, 'revindex' => 2, 'length' => 2, 'last' => false), 'article' => object(Article), '_key' => 0)) (var/cache/dev/twig/18/1883c81c3d24fa7e669b2b4dd20f025d.php:285) at __TwigTemplate_63465b2a6077b2dfabd5b42098e713a2->block_body(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog', '_parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), '_seq' => array(object(Article), object(Article)), 'loop' => array('parent' => array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 1, 'revindex' => 2, 'length' => 2, 'last' => false), 'article' => object(Article), '_key' => 0), array('title' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_title'), 'seo' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_seo'), 'og' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_og'), 'stylesheets' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_body'), 'javascript' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_javascript'))) (vendor/twig/twig/src/Template.php:171) at Twig\Template->displayBlock('body', array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), array('title' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_title'), 'seo' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_seo'), 'og' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_og'), 'stylesheets' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_body'), 'javascript' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_javascript'))) (var/cache/dev/twig/55/55669510c38230dfcd6ab33f309c4514.php:185) at __TwigTemplate_52a36eda23a03b9586690e966c0412fd->doDisplay(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable), 'current_path' => 'blog'), array('title' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_title'), 'seo' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_seo'), 'og' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_og'), 'stylesheets' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_body'), 'javascript' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_javascript'))) (vendor/twig/twig/src/Template.php:394) at Twig\Template->displayWithErrorHandling(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable)), array('title' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_title'), 'seo' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_seo'), 'og' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_og'), 'stylesheets' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_body'), 'javascript' => array(object(__TwigTemplate_52a36eda23a03b9586690e966c0412fd), 'block_javascript'))) (vendor/twig/twig/src/Template.php:367) at Twig\Template->display(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable)), array('title' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_title'), 'seo' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_seo'), 'body' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_body'))) (var/cache/dev/twig/18/1883c81c3d24fa7e669b2b4dd20f025d.php:50) at __TwigTemplate_63465b2a6077b2dfabd5b42098e713a2->doDisplay(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable)), array('title' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_title'), 'seo' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_seo'), 'body' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_body'))) (vendor/twig/twig/src/Template.php:394) at Twig\Template->displayWithErrorHandling(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null, 'app' => object(AppVariable), 'locales' => array('fr', 'en', 'es', 'pt', 'it', 'de', 'sv', 'nl'), 'globals' => object(GlobalVariable)), array('title' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_title'), 'seo' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_seo'), 'body' => array(object(__TwigTemplate_63465b2a6077b2dfabd5b42098e713a2), 'block_body'))) (vendor/twig/twig/src/Template.php:367) at Twig\Template->display(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null)) (vendor/twig/twig/src/Template.php:379) at Twig\Template->render(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null)) (vendor/twig/twig/src/TemplateWrapper.php:38) at Twig\TemplateWrapper->render(array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null)) (vendor/twig/twig/src/Environment.php:280) at Twig\Environment->render('front/blog/index.html.twig', array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null)) (vendor/symfony/framework-bundle/Controller/AbstractController.php:258) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('front/blog/index.html.twig', array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null)) (vendor/symfony/framework-bundle/Controller/AbstractController.php:266) at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('front/blog/index.html.twig', array('menu' => 'blog', 'featured' => array(), 'latest' => array(object(Article), object(Article)), 'form' => object(FormView), 'title' => 'blog.title', 'categories' => array(object(Category)), 'articles' => null)) (src/Controller/Front/BlogController.php:79) at App\Controller\Front\BlogController->blog(object(ArticleRepository), object(CategoryRepository), object(Request), object(PaginatorInterface_82dac15), object(WebsiteLanguageRepository)) (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) |