Symfony Exception

NotFoundHttpException RuntimeError

HTTP 500 Internal Server Error

An exception has been thrown during the rendering of a template ("The "product" has not been found").

Exceptions 2

Twig\Error\ RuntimeError

  1.             <div class="row">
  2.                 {{ sonata_block_render_event('sylius.shop.product_review.index.before_product_box', {'product_reviews': product_reviews}) }}
  3.                 {{
  4.                     render(url('sylius_shop_partial_product_show_by_slug', {
  5.                         'slug': app.request.attributes.get('slug'),
  6.                         'template': '@SyliusShop/Product/_box.html.twig'
  7.                     }))
  8.                 }}
  9.                 {{ sonata_block_render_event('sylius.shop.product_review.index.after_product_box', {'product_reviews': product_reviews}) }}
  1.             $this->displayBlock('flashes_content'$context$blocks);
  2.             // line 159
  3.             echo "
  4.         ";
  5.             // line 160
  6.             $this->displayBlock('content'$context$blocks);
  7.             // line 162
  8.             echo "
  9.         ";
  10.             // line 163
  11.             echo call_user_func_array($this->env->getFunction('sonata_block_render_event')->getCallable(), ["sylius.shop.layout.after_content"]);
in vendor/twig/twig/src/Template.php->doDisplay (line 395)
  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 372)
  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.     {
  2.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  3.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""@SyliusShop/ProductReview/index.html.twig"));
  4.         $this->parent $this->loadTemplate("@SyliusShop/layout.html.twig""@SyliusShop/ProductReview/index.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.         
  7.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  8.     }
in vendor/twig/twig/src/Template.php->doDisplay (line 395)
  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 372)
  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 380)
  1.     public function render(array $context)
  2.     {
  3.         $level ob_get_level();
  4.         ob_start();
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      *
  2.      * @throws Error if something went wrong like a thrown exception while rendering the template
  3.      */
  4.     public function render($name, array $parameters = [])
  5.     {
  6.         return $this->load($name)->render($parameters);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      *
  1.      * {@inheritdoc}
  2.      */
  3.     public function render($name, array $parameters = [])
  4.     {
  5.         try {
  6.             return parent::render($name$parameters);
  7.         } catch (Error $e) {
  8.             if ($name instanceof TemplateReference && !method_exists($e'setSourceContext')) {
  9.                 try {
  10.                     // try to get the real name of the template where the error occurred
  11.                     $name $e->getTemplateName();
  1.                 $engine $view->getEngine() ?: $this->defaultEngine;
  2.                 $template->set('engine'$engine);
  3.             }
  4.         }
  5.         return $this->templating->render($template$data);
  6.     }
  7.     /**
  8.      * Prepares view data for use by templating engine.
  9.      *
  1.      */
  2.     private function initResponse(View $view$format)
  3.     {
  4.         $content null;
  5.         if ($this->isFormatTemplating($format)) {
  6.             $content $this->renderTemplate($view$format);
  7.         } elseif ($this->serializeNull || null !== $view->getData()) {
  8.             $data $this->getDataFromView($view);
  9.             if ($data instanceof FormInterface && $data->isSubmitted() && !$data->isValid()) {
  10.                 $view->getContext()->setAttribute('status_code'$this->failedValidationCode);
  1.         if ($location) {
  2.             return $this->createRedirectResponse($view$location$format);
  3.         }
  4.         $response $this->initResponse($view$format);
  5.         if (!$response->headers->has('Content-Type')) {
  6.             $mimeType $request->attributes->get('media_type');
  7.             if (null === $mimeType) {
  8.                 $mimeType $request->getMimeType($format);
  1.         if (isset($this->customHandlers[$format])) {
  2.             return call_user_func($this->customHandlers[$format], $this$view$request$format);
  3.         }
  4.         return $this->createResponse($view$request$format);
  5.     }
  6.     /**
  7.      * Creates the Response from the view.
  8.      *
  1.             }
  2.             $view->getContext()->enableMaxDepth();
  3.         }
  4.         return $this->restViewHandler->handle($view);
  5.     }
  6. }
  1.                     $this->metadata->getPluralName() => $resources,
  2.                 ])
  3.             ;
  4.         }
  5.         return $this->viewHandler->handle($configuration$view);
  6.     }
  7.     public function createAction(Request $request): Response
  8.     {
  9.         $configuration $this->requestConfigurationFactory->create($this->metadata$request);
  1.         $this->dispatcher->dispatch(KernelEvents::CONTROLLER_ARGUMENTS$event);
  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 GetResponseForControllerResultEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch(KernelEvents::VIEW$event);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level'ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in web/app.php (line 27)
  1. $kernel = new AppKernel('prod'true);
  2. //$kernel = new AppKernel('dev', true);
  3. $request Request::createFromGlobals();
  4. $response $kernel->handle($request);
  5. $response->send();
  6. $kernel->terminate($request$response);

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

The "product" has not been found

  1.      * @throws NotFoundHttpException
  2.      */
  3.     protected function findOr404(RequestConfiguration $configuration): ResourceInterface
  4.     {
  5.         if (null === $resource $this->singleResourceProvider->get($configuration$this->repository)) {
  6.             throw new NotFoundHttpException(sprintf('The "%s" has not been found'$this->metadata->getHumanizedName()));
  7.         }
  8.         return $resource;
  9.     }
  10. }
  1.     public function showAction(Request $request): Response
  2.     {
  3.         $configuration $this->requestConfigurationFactory->create($this->metadata$request);
  4.         $this->isGrantedOr403($configurationResourceActions::SHOW);
  5.         $resource $this->findOr404($configuration);
  6.         $this->eventDispatcher->dispatch(ResourceActions::SHOW$configuration$resource);
  7.         $view View::create($resource);
  1.         $this->dispatcher->dispatch(KernelEvents::CONTROLLER_ARGUMENTS$event);
  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 GetResponseForControllerResultEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch(KernelEvents::VIEW$event);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level'ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         if (!IpUtils::checkIp('127.0.0.1'$trustedProxies)) {
  2.             Request::setTrustedProxies(array_merge($trustedProxies, ['127.0.0.1']), Request::getTrustedHeaderSet());
  3.         }
  4.         try {
  5.             return $kernel->handle($request$type$catch);
  6.         } finally {
  7.             // restore global state
  8.             Request::setTrustedProxies($trustedProxies$trustedHeaderSet);
  9.         }
  10.     }
  1.             $subRequest->attributes->add($reference->attributes);
  2.         }
  3.         $level ob_get_level();
  4.         try {
  5.             return SubRequestHandler::handle($this->kernel$subRequestHttpKernelInterface::SUB_REQUESTfalse);
  6.         } catch (\Exception $e) {
  7.             // we dispatch the exception event to trigger the logging
  8.             // the response that comes back is ignored
  9.             if (isset($options['ignore_errors']) && $options['ignore_errors'] && $this->dispatcher) {
  10.                 $event = new GetResponseForExceptionEvent($this->kernel$requestHttpKernelInterface::SUB_REQUEST$e);
  1.         if (!$request $this->requestStack->getCurrentRequest()) {
  2.             throw new \LogicException('Rendering a fragment can only be done when handling a Request.');
  3.         }
  4.         return $this->deliver($this->renderers[$renderer]->render($uri$request$options));
  5.     }
  6.     /**
  7.      * Delivers the Response as a string.
  8.      *
  1.         if (!isset($this->initialized[$renderer]) && $this->container->has($renderer)) {
  2.             $this->addRenderer($this->container->get($renderer));
  3.             $this->initialized[$renderer] = true;
  4.         }
  5.         return parent::render($uri$renderer$options);
  6.     }
  7. }
  1.     public function renderFragment($uri$options = [])
  2.     {
  3.         $strategy = isset($options['strategy']) ? $options['strategy'] : 'inline';
  4.         unset($options['strategy']);
  5.         return $this->handler->render($uri$strategy$options);
  6.     }
  7.     /**
  8.      * Renders a fragment.
  9.      *
  1.         echo "
  2.                 ";
  3.         // line 15
  4.         echo $this->env->getRuntime('Symfony\Bridge\Twig\Extension\HttpKernelRuntime')->renderFragment($this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getUrl("sylius_shop_partial_product_show_by_slug", ["slug" => twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source,         // line 17
  5. (isset($context["app"]) || array_key_exists("app"$context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.'17$this->source); })()), "request", [], "any"falsefalsefalse17), "attributes", [], "any"falsefalsefalse17), "get", [=> "slug"], "method"falsefalsefalse17), "template" => "@SyliusShop/Product/_box.html.twig"]));
  6.         // line 20
  7.         echo "
  8.                 ";
  9.         // line 22
in vendor/twig/twig/src/Template.php->block_content (line 184)
  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->displayBlock('flashes_content'$context$blocks);
  2.             // line 159
  3.             echo "
  4.         ";
  5.             // line 160
  6.             $this->displayBlock('content'$context$blocks);
  7.             // line 162
  8.             echo "
  9.         ";
  10.             // line 163
  11.             echo call_user_func_array($this->env->getFunction('sonata_block_render_event')->getCallable(), ["sylius.shop.layout.after_content"]);
in vendor/twig/twig/src/Template.php->doDisplay (line 395)
  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 372)
  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.     {
  2.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  3.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""@SyliusShop/ProductReview/index.html.twig"));
  4.         $this->parent $this->loadTemplate("@SyliusShop/layout.html.twig""@SyliusShop/ProductReview/index.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.         
  7.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  8.     }
in vendor/twig/twig/src/Template.php->doDisplay (line 395)
  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 372)
  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 380)
  1.     public function render(array $context)
  2.     {
  3.         $level ob_get_level();
  4.         ob_start();
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.      *
  2.      * @throws Error if something went wrong like a thrown exception while rendering the template
  3.      */
  4.     public function render($name, array $parameters = [])
  5.     {
  6.         return $this->load($name)->render($parameters);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      *
  1.      * {@inheritdoc}
  2.      */
  3.     public function render($name, array $parameters = [])
  4.     {
  5.         try {
  6.             return parent::render($name$parameters);
  7.         } catch (Error $e) {
  8.             if ($name instanceof TemplateReference && !method_exists($e'setSourceContext')) {
  9.                 try {
  10.                     // try to get the real name of the template where the error occurred
  11.                     $name $e->getTemplateName();
  1.                 $engine $view->getEngine() ?: $this->defaultEngine;
  2.                 $template->set('engine'$engine);
  3.             }
  4.         }
  5.         return $this->templating->render($template$data);
  6.     }
  7.     /**
  8.      * Prepares view data for use by templating engine.
  9.      *
  1.      */
  2.     private function initResponse(View $view$format)
  3.     {
  4.         $content null;
  5.         if ($this->isFormatTemplating($format)) {
  6.             $content $this->renderTemplate($view$format);
  7.         } elseif ($this->serializeNull || null !== $view->getData()) {
  8.             $data $this->getDataFromView($view);
  9.             if ($data instanceof FormInterface && $data->isSubmitted() && !$data->isValid()) {
  10.                 $view->getContext()->setAttribute('status_code'$this->failedValidationCode);
  1.         if ($location) {
  2.             return $this->createRedirectResponse($view$location$format);
  3.         }
  4.         $response $this->initResponse($view$format);
  5.         if (!$response->headers->has('Content-Type')) {
  6.             $mimeType $request->attributes->get('media_type');
  7.             if (null === $mimeType) {
  8.                 $mimeType $request->getMimeType($format);
  1.         if (isset($this->customHandlers[$format])) {
  2.             return call_user_func($this->customHandlers[$format], $this$view$request$format);
  3.         }
  4.         return $this->createResponse($view$request$format);
  5.     }
  6.     /**
  7.      * Creates the Response from the view.
  8.      *
  1.             }
  2.             $view->getContext()->enableMaxDepth();
  3.         }
  4.         return $this->restViewHandler->handle($view);
  5.     }
  6. }
  1.                     $this->metadata->getPluralName() => $resources,
  2.                 ])
  3.             ;
  4.         }
  5.         return $this->viewHandler->handle($configuration$view);
  6.     }
  7.     public function createAction(Request $request): Response
  8.     {
  9.         $configuration $this->requestConfigurationFactory->create($this->metadata$request);
  1.         $this->dispatcher->dispatch(KernelEvents::CONTROLLER_ARGUMENTS$event);
  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 GetResponseForControllerResultEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch(KernelEvents::VIEW$event);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level'ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in web/app.php (line 27)
  1. $kernel = new AppKernel('prod'true);
  2. //$kernel = new AppKernel('dev', true);
  3. $request Request::createFromGlobals();
  4. $response $kernel->handle($request);
  5. $response->send();
  6. $kernel->terminate($request$response);

Logs

No log messages

Stack Traces 2

[2/2] RuntimeError

Twig\Error\RuntimeError:
An exception has been thrown during the rendering of a template ("The "product" has not been found").

  at app/themes/KuuzaTheme/SyliusShopBundle/views/ProductReview/index.html.twig:17
  at Twig\Template->displayBlock('content', array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array(), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'sylius' => object(ShopperContext_d398ef6), 'sylius_base_locale' => 'fr', 'sylius_meta' => array('version' => '1.2.16'), 'sonata_block' => object(GlobalVariables), 'kuuza_channel' => object(Channel)), array('title' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_title'), 'metatags' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_metatags'), 'stylesheets' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_stylesheets'), 'top' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_top'), 'header' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_header'), 'slider' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_slider'), 'flashes_content' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_flashes_content'), 'content' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_content'), 'footer' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_javascripts')))
     (var/cache/prod/twig/56/562aa31dc37c823efa48297c0d354ab2713fd83e323badd53b4ba752b0dec483.php:247)
  at __TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91->doDisplay(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array(), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'sylius' => object(ShopperContext_d398ef6), 'sylius_base_locale' => 'fr', 'sylius_meta' => array('version' => '1.2.16'), 'sonata_block' => object(GlobalVariables), 'kuuza_channel' => object(Channel)), array('title' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_title'), 'metatags' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_metatags'), 'stylesheets' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_stylesheets'), 'top' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_top'), 'header' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_header'), 'slider' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_slider'), 'flashes_content' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_flashes_content'), 'content' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_content'), 'footer' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_javascripts')))
     (vendor/twig/twig/src/Template.php:395)
  at Twig\Template->displayWithErrorHandling(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array(), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'sylius' => object(ShopperContext_d398ef6), 'sylius_base_locale' => 'fr', 'sylius_meta' => array('version' => '1.2.16'), 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_title'), 'metatags' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_metatags'), 'stylesheets' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_stylesheets'), 'top' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_top'), 'header' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_header'), 'slider' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_slider'), 'flashes_content' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_flashes_content'), 'content' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_content'), 'footer' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_javascripts')))
     (vendor/twig/twig/src/Template.php:372)
  at Twig\Template->display(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array(), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'sylius' => object(ShopperContext_d398ef6), 'sylius_base_locale' => 'fr', 'sylius_meta' => array('version' => '1.2.16'), 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_title'), 'slider' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_slider'), 'content' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_content')))
     (var/cache/prod/twig/b3/b37693a962276ba6ffcc4e0dd9a40b39e694b19e0ccfd02cb89e761ade357dfa.php:45)
  at __TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724->doDisplay(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array(), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'sylius' => object(ShopperContext_d398ef6), 'sylius_base_locale' => 'fr', 'sylius_meta' => array('version' => '1.2.16'), 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_title'), 'slider' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_slider'), 'content' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_content')))
     (vendor/twig/twig/src/Template.php:395)
  at Twig\Template->displayWithErrorHandling(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array(), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'sylius' => object(ShopperContext_d398ef6), 'sylius_base_locale' => 'fr', 'sylius_meta' => array('version' => '1.2.16'), 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_title'), 'slider' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_slider'), 'content' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_content')))
     (vendor/twig/twig/src/Template.php:372)
  at Twig\Template->display(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array()))
     (vendor/twig/twig/src/Template.php:380)
  at Twig\Template->render(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array()))
     (vendor/symfony/symfony/src/Symfony/Bridge/Twig/TwigEngine.php:49)
  at Symfony\Bridge\Twig\TwigEngine->render('@SyliusShop/ProductReview/index.html.twig', array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array()))
     (vendor/symfony/symfony/src/Symfony/Bundle/TwigBundle/TwigEngine.php:45)
  at Symfony\Bundle\TwigBundle\TwigEngine->render('@SyliusShop/ProductReview/index.html.twig', array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array()))
     (vendor/friendsofsymfony/rest-bundle/View/ViewHandler.php:373)
  at FOS\RestBundle\View\ViewHandler->renderTemplate(object(View), 'html')
     (vendor/friendsofsymfony/rest-bundle/View/ViewHandler.php:452)
  at FOS\RestBundle\View\ViewHandler->initResponse(object(View), 'html')
     (vendor/friendsofsymfony/rest-bundle/View/ViewHandler.php:426)
  at FOS\RestBundle\View\ViewHandler->createResponse(object(View), object(Request), 'html')
     (vendor/friendsofsymfony/rest-bundle/View/ViewHandler.php:310)
  at FOS\RestBundle\View\ViewHandler->handle(object(View))
     (vendor/sylius/sylius/src/Sylius/Bundle/ResourceBundle/Controller/ViewHandler.php:45)
  at Sylius\Bundle\ResourceBundle\Controller\ViewHandler->handle(object(RequestConfiguration), object(View))
     (vendor/sylius/sylius/src/Sylius/Bundle/ResourceBundle/Controller/ResourceController.php:176)
  at Sylius\Bundle\ResourceBundle\Controller\ResourceController->indexAction(object(Request))
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:150)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:67)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php:198)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (web/app.php:27)

[1/2] NotFoundHttpException

Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
The "product" has not been found

  at vendor/sylius/sylius/src/Sylius/Bundle/ResourceBundle/Controller/ResourceController.php:535
  at Sylius\Bundle\ResourceBundle\Controller\ResourceController->findOr404(object(RequestConfiguration))
     (vendor/sylius/sylius/src/Sylius/Bundle/ResourceBundle/Controller/ResourceController.php:130)
  at Sylius\Bundle\ResourceBundle\Controller\ResourceController->showAction(object(Request))
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:150)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 2)
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:67)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 2, false)
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpCache/SubRequestHandler.php:85)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(HttpKernel), object(Request), 2, false)
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Fragment/InlineFragmentRenderer.php:80)
  at Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer->render('https://kuuzacomores.com/_partial/products/rechaud-a-gaz-3-feux-trust?template=%40SyliusShop/Product/_box.html.twig', object(Request), array('ignore_errors' => false))
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Fragment/FragmentHandler.php:87)
  at Symfony\Component\HttpKernel\Fragment\FragmentHandler->render('https://kuuzacomores.com/_partial/products/rechaud-a-gaz-3-feux-trust?template=%40SyliusShop/Product/_box.html.twig', 'inline', array('ignore_errors' => false))
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/DependencyInjection/LazyLoadingFragmentHandler.php:45)
  at Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler->render('https://kuuzacomores.com/_partial/products/rechaud-a-gaz-3-feux-trust?template=%40SyliusShop/Product/_box.html.twig', 'inline', array())
     (vendor/symfony/symfony/src/Symfony/Bridge/Twig/Extension/HttpKernelRuntime.php:46)
  at Symfony\Bridge\Twig\Extension\HttpKernelRuntime->renderFragment('https://kuuzacomores.com/_partial/products/rechaud-a-gaz-3-feux-trust?template=%40SyliusShop/Product/_box.html.twig')
     (var/cache/prod/twig/b3/b37693a962276ba6ffcc4e0dd9a40b39e694b19e0ccfd02cb89e761ade357dfa.php:94)
  at __TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724->block_content(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array(), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'sylius' => object(ShopperContext_d398ef6), 'sylius_base_locale' => 'fr', 'sylius_meta' => array('version' => '1.2.16'), 'sonata_block' => object(GlobalVariables), 'kuuza_channel' => object(Channel)), array('title' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_title'), 'metatags' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_metatags'), 'stylesheets' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_stylesheets'), 'top' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_top'), 'header' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_header'), 'slider' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_slider'), 'flashes_content' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_flashes_content'), 'content' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_content'), 'footer' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_javascripts')))
     (vendor/twig/twig/src/Template.php:184)
  at Twig\Template->displayBlock('content', array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array(), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'sylius' => object(ShopperContext_d398ef6), 'sylius_base_locale' => 'fr', 'sylius_meta' => array('version' => '1.2.16'), 'sonata_block' => object(GlobalVariables), 'kuuza_channel' => object(Channel)), array('title' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_title'), 'metatags' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_metatags'), 'stylesheets' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_stylesheets'), 'top' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_top'), 'header' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_header'), 'slider' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_slider'), 'flashes_content' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_flashes_content'), 'content' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_content'), 'footer' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_javascripts')))
     (var/cache/prod/twig/56/562aa31dc37c823efa48297c0d354ab2713fd83e323badd53b4ba752b0dec483.php:247)
  at __TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91->doDisplay(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array(), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'sylius' => object(ShopperContext_d398ef6), 'sylius_base_locale' => 'fr', 'sylius_meta' => array('version' => '1.2.16'), 'sonata_block' => object(GlobalVariables), 'kuuza_channel' => object(Channel)), array('title' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_title'), 'metatags' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_metatags'), 'stylesheets' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_stylesheets'), 'top' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_top'), 'header' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_header'), 'slider' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_slider'), 'flashes_content' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_flashes_content'), 'content' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_content'), 'footer' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_javascripts')))
     (vendor/twig/twig/src/Template.php:395)
  at Twig\Template->displayWithErrorHandling(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array(), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'sylius' => object(ShopperContext_d398ef6), 'sylius_base_locale' => 'fr', 'sylius_meta' => array('version' => '1.2.16'), 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_title'), 'metatags' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_metatags'), 'stylesheets' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_stylesheets'), 'top' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_top'), 'header' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_header'), 'slider' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_slider'), 'flashes_content' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_flashes_content'), 'content' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_content'), 'footer' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_footer'), 'javascripts' => array(object(__TwigTemplate_c3d74c4f6b4c4da5f26bdf9b642a545f12165e47fe69db149810db7d74f5ec91), 'block_javascripts')))
     (vendor/twig/twig/src/Template.php:372)
  at Twig\Template->display(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array(), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'sylius' => object(ShopperContext_d398ef6), 'sylius_base_locale' => 'fr', 'sylius_meta' => array('version' => '1.2.16'), 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_title'), 'slider' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_slider'), 'content' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_content')))
     (var/cache/prod/twig/b3/b37693a962276ba6ffcc4e0dd9a40b39e694b19e0ccfd02cb89e761ade357dfa.php:45)
  at __TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724->doDisplay(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array(), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'sylius' => object(ShopperContext_d398ef6), 'sylius_base_locale' => 'fr', 'sylius_meta' => array('version' => '1.2.16'), 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_title'), 'slider' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_slider'), 'content' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_content')))
     (vendor/twig/twig/src/Template.php:395)
  at Twig\Template->displayWithErrorHandling(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array(), 'wrap_fields_with_addons' => true, 'app' => object(AppVariable), 'sylius' => object(ShopperContext_d398ef6), 'sylius_base_locale' => 'fr', 'sylius_meta' => array('version' => '1.2.16'), 'sonata_block' => object(GlobalVariables)), array('title' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_title'), 'slider' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_slider'), 'content' => array(object(__TwigTemplate_9f600634c379354bcca4b061b003310bf4a3e9bdf276f40396420af760d2b724), 'block_content')))
     (vendor/twig/twig/src/Template.php:372)
  at Twig\Template->display(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array()))
     (vendor/twig/twig/src/Template.php:380)
  at Twig\Template->render(array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array()))
     (vendor/symfony/symfony/src/Symfony/Bridge/Twig/TwigEngine.php:49)
  at Symfony\Bridge\Twig\TwigEngine->render('@SyliusShop/ProductReview/index.html.twig', array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array()))
     (vendor/symfony/symfony/src/Symfony/Bundle/TwigBundle/TwigEngine.php:45)
  at Symfony\Bundle\TwigBundle\TwigEngine->render('@SyliusShop/ProductReview/index.html.twig', array('configuration' => object(RequestConfiguration), 'metadata' => object(Metadata), 'resources' => array(), 'product_reviews' => array()))
     (vendor/friendsofsymfony/rest-bundle/View/ViewHandler.php:373)
  at FOS\RestBundle\View\ViewHandler->renderTemplate(object(View), 'html')
     (vendor/friendsofsymfony/rest-bundle/View/ViewHandler.php:452)
  at FOS\RestBundle\View\ViewHandler->initResponse(object(View), 'html')
     (vendor/friendsofsymfony/rest-bundle/View/ViewHandler.php:426)
  at FOS\RestBundle\View\ViewHandler->createResponse(object(View), object(Request), 'html')
     (vendor/friendsofsymfony/rest-bundle/View/ViewHandler.php:310)
  at FOS\RestBundle\View\ViewHandler->handle(object(View))
     (vendor/sylius/sylius/src/Sylius/Bundle/ResourceBundle/Controller/ViewHandler.php:45)
  at Sylius\Bundle\ResourceBundle\Controller\ViewHandler->handle(object(RequestConfiguration), object(View))
     (vendor/sylius/sylius/src/Sylius/Bundle/ResourceBundle/Controller/ResourceController.php:176)
  at Sylius\Bundle\ResourceBundle\Controller\ResourceController->indexAction(object(Request))
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:150)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/HttpKernel.php:67)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Kernel.php:198)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (web/app.php:27)