Exceptions

An exception has been thrown during the rendering of a template ("Invalid page number. Page: 0: $page must be positive non-zero integer").

Exceptions 2

Twig\Error\ RuntimeError

  1.             {% include 'search_properties/_toolbar.html.twig' %}
  2.             <div ref='cards' class='cards-list' :class='{"cards-list--2-col": !showMap, "pointer-none o-04": paginatedResultsAreLoading}'>
  3.               {{ render(controller('App\\Controller\\Website\\OfferController::searchCardsPaginated', {
  4.                 request: request,
  5.                 rent: rent,
  6.               })) }}
  7.             </div>
  8.           </div>
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php -> display (line 379)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.     public function render(array $context = []): string
  2.     {
  3.         // using func_get_args() allows to not expose the blocks argument
  4.         // as it should only be used by internal code
  5.         return $this->template->render($context\func_get_args()[1] ?? []);
  6.     }
  7.     public function display(array $context = [])
  8.     {
  9.         // using func_get_args() allows to not expose the blocks argument
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     {
  2.         if (!$this->container->has('twig')) {
  3.             throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      */
  1.     /**
  2.      * Renders a view.
  3.      */
  4.     protected function render(string $view, array $parameters = [], Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         if (null === $response) {
  8.             $response = new Response();
  9.         }
AbstractController->render('pages/search_properties.html.twig', array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain :               Avec permis en force.Projet :                 Construction d\'un immeuble d\'environ 32\'000 m³.Affectations :      Bureaux, laboratoires etc.Emplacement :   Proche de l\'autoroute.Restriction :        Pas d\'activités lourdes en trafic.Prix :                    Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20))) in src/Controller/Website/OfferController.php (line 164)
  1.     ];
  2.     $dataToReturn['radiusOptions'] = [05101520];
  3.     if ($request->query->get('json')) {
  4.       return new JsonResponse($dataToReturn);
  5.     }
  6.     return $this->render('pages/search_properties.html.twig'$dataToReturn);
  7.   }
  8.   /**
  9.    * action that returns JSON with all matching locations as user is typing in "location" field
  10.    */
OfferController->detail('-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', object(OfferRepository), object(Request), false) in src/Controller/Website/OfferController.php (line 50)
  1.   public function rentDetail($encodedTitleOfferRepository $offerRepositoryRequest $request) {
  2.     return $this->detail($encodedTitle$offerRepository,  $requesttrue);
  3.   }
  4.   public function buyDetail($encodedTitleOfferRepository $offerRepositoryRequest $request) {
  5.     return $this->detail($encodedTitle$offerRepository,  $requestfalse);
  6.   }
  7.   public function searchCardsPaginated(OfferRepository $offerRepositoryRequest $requestPaginatorInterface $paginator$rent true)
  8.   {
  9.     $resultsArray $this->getResults($offerRepository$request$rent);
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 66)
  1. // When using the HttpCache, you need to call the method in your front controller
  2. // instead of relying on the configuration parameter
  3. // https://symfony.com/doc/3.4/reference/configuration/framework.html#http-method-override
  4. Request::enableHttpMethodParameterOverride();
  5. $request Request::createFromGlobals();
  6. $response $kernel->handle($request);
  7. $response->send();
  8. $kernel->terminate($request$response);

Knp\Component\Pager\Exception\ PageNumberInvalidException

Invalid page number. Page: 0: $page must be positive non-zero integer

  1. final class PageNumberInvalidException extends OutOfRangeException
  2. {
  3.     public static function create(int $page): self
  4.     {
  5.         return new self(
  6.             sprintf('Invalid page number. Page: %d: $page must be positive non-zero integer'$page)
  7.         );
  8.     }
  9. }
  1.     }
  2.     public function paginate($targetint $page 1int $limit null, array $options = []): PaginationInterface
  3.     {
  4.         if ($page <= 0) {
  5.             throw PageNumberInvalidException::create($page);
  6.         }
  7.         $limit $limit ?? $this->defaultOptions[self::DEFAULT_LIMIT];
  8.         if ($limit <= 0) {
  9.             throw PageLimitInvalidException::create($limit);
  1.     public function paginate($targetint $page 1, ?int $limit null, array $options = []) : \Knp\Component\Pager\Pagination\PaginationInterface
  2.     {
  3.         $this->initializer3eb8d && ($this->initializer3eb8d->__invoke($valueHolderbf8ca$this'paginate', array('target' => $target'page' => $page'limit' => $limit'options' => $options), $this->initializer3eb8d) || 1) && $this->valueHolderbf8ca $valueHolderbf8ca;
  4.         if ($this->valueHolderbf8ca === $returnValue $this->valueHolderbf8ca->paginate($target$page$limit$options)) {
  5.             return $this;
  6.         }
  7.         return $returnValue;
  8.     }
PaginatorInterface_82dac15->paginate(array(array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => null, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'tags' => array('Terrain')), array('id' => 135, 'status' => 'A_VENDRE', 'ref' => '158784', 'title' => '2 locaux commerciaux entièrement loués à vendre', 'description' => '', 'city' => 'Etagnières', 'surface' => '100.0', 'address' => '', 'rentAddress' => 'Vaud, Etagnières', 'buyAddress' => 'Vaud, Etagnières', 'price' => 790000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.6007366, 'lng' => 6.6086661), 'isForRent' => null, 'type' => 'Commercial', 'iconOnMap' => 'office', 'url' => '2-locaux-commerciaux-enti-rement-lou-s-vendre-135', 'images' => array('property-images/c81a854b6e02a2012a8a88f72ff03daf780521cf5d9eaaf25698f1ca9b119640-680f6dc6bdc9d.jpeg', 'property-images/2a7ddd31a3c32ac368c08743968c0d09b290b00c0ecc8501064472348451683c-680f6dc6dbfc3.jpg'), 'tags' => array('Commercial', '~100.0m<sup class=\'lh-0\'>2</sup>')), array('id' => 126, 'status' => 'A_VENDRE', 'ref' => '162423', 'title' => 'Appartement lumineux avec balcon, actuellement loué, dans un quartier calme', 'description' => 'Chemin des Foulis 2', 'city' => 'Nyon', 'surface' => '100.0', 'address' => 'Chemin des Foulis 2', 'rentAddress' => 'Vaud, Nyon', 'buyAddress' => 'Vaud, Nyon', 'price' => 870000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.3805092, 'lng' => 6.2298735), 'isForRent' => null, 'type' => 'Appartement', 'iconOnMap' => 'office', 'url' => '-ppartement-lumineux-avec-balcon-actuellement-lou-dans-un-quartier-calme-126', 'images' => array('property-images/c8d663f8db944c04e7f036ca2f386d2aa9f42f414093af179719814aeb7a2830-687f9965bad8b.jpeg', 'property-images/c9cf707f10571f2e8c4eec7dd9a72a441607b936e1c4b7c367493db0f4563de9-687f9965d5a69.jpeg', 'property-images/a6cf009ed809f0a4f032a0c504586157f8680bfcddd83be2d8e60489ee06d2f2-687f9965eef58.jpeg', 'property-images/d53031a9071d689dce27d34f294db8e17462216d45fb033c4981d65f56e2220b-687f9966117d5.jpeg', 'property-images/985162b5f63ceff7dc158e03779fb913068905d030f9a5449cc40e9bb21d3c0d-687f99662a152.jpeg', 'property-images/8b6470c7fa3a6dd965ab91a5d2fd2358e35180b744ce74c5d027673144bd2b1b-687f996645fdd.jpg', 'property-images/65ad682b078653068a26986895d8dfd72c923eea36028a099eb94f184b0dac1d-687f99665f0e7.jpeg'), 'tags' => array('Appartement', '~100.0m<sup class=\'lh-0\'>2</sup>'))), 0, 8, array('defaultSortFieldName' => 'price', 'defaultSortDirection' => 'asc')) in src/Controller/Website/OfferController.php (line 65)
  1.       $resultsArray,
  2.       $request->query->getInt('page'1),
  3.       8,
  4.       [
  5.         'defaultSortFieldName' => 'price',
  6.         'defaultSortDirection' => $request->query->get('direction') ?: 'desc',
  7.       ]
  8.     );
  9.     return $this->render('search_properties/_cards.html.twig', [
  10.       'pagination' => $pagination,
in vendor/symfony/http-kernel/HttpKernel.php -> searchCardsPaginated (line 152)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         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 ExceptionEvent($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(string|ControllerReference $uri, array $options = []): string
  2.     {
  3.         $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.             <div ref='cards' class='cards-list' :class='{\"cards-list--2-col\": !showMap, \"pointer-none o-04\": paginatedResultsAreLoading}'>
  3.               ";
  4.         // line 66
  5.         echo $this->env->getRuntime('Symfony\Bridge\Twig\Extension\HttpKernelRuntime')->renderFragment(Symfony\Bridge\Twig\Extension\HttpKernelExtension::controller("App\\Controller\\Website\\OfferController::searchCardsPaginated", ["request" =>         // line 67
  6. ($context["request"] ?? null), "rent" =>         // line 68
  7. ($context["rent"] ?? null)]));
  8.         // line 69
  9.         echo "
  10.             </div>
  11.           </div>
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php -> display (line 379)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.     public function render(array $context = []): string
  2.     {
  3.         // using func_get_args() allows to not expose the blocks argument
  4.         // as it should only be used by internal code
  5.         return $this->template->render($context\func_get_args()[1] ?? []);
  6.     }
  7.     public function display(array $context = [])
  8.     {
  9.         // using func_get_args() allows to not expose the blocks argument
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     {
  2.         if (!$this->container->has('twig')) {
  3.             throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      */
  1.     /**
  2.      * Renders a view.
  3.      */
  4.     protected function render(string $view, array $parameters = [], Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         if (null === $response) {
  8.             $response = new Response();
  9.         }
AbstractController->render('pages/search_properties.html.twig', array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain :               Avec permis en force.Projet :                 Construction d\'un immeuble d\'environ 32\'000 m³.Affectations :      Bureaux, laboratoires etc.Emplacement :   Proche de l\'autoroute.Restriction :        Pas d\'activités lourdes en trafic.Prix :                    Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20))) in src/Controller/Website/OfferController.php (line 164)
  1.     ];
  2.     $dataToReturn['radiusOptions'] = [05101520];
  3.     if ($request->query->get('json')) {
  4.       return new JsonResponse($dataToReturn);
  5.     }
  6.     return $this->render('pages/search_properties.html.twig'$dataToReturn);
  7.   }
  8.   /**
  9.    * action that returns JSON with all matching locations as user is typing in "location" field
  10.    */
OfferController->detail('-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', object(OfferRepository), object(Request), false) in src/Controller/Website/OfferController.php (line 50)
  1.   public function rentDetail($encodedTitleOfferRepository $offerRepositoryRequest $request) {
  2.     return $this->detail($encodedTitle$offerRepository,  $requesttrue);
  3.   }
  4.   public function buyDetail($encodedTitleOfferRepository $offerRepositoryRequest $request) {
  5.     return $this->detail($encodedTitle$offerRepository,  $requestfalse);
  6.   }
  7.   public function searchCardsPaginated(OfferRepository $offerRepositoryRequest $requestPaginatorInterface $paginator$rent true)
  8.   {
  9.     $resultsArray $this->getResults($offerRepository$request$rent);
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 66)
  1. // When using the HttpCache, you need to call the method in your front controller
  2. // instead of relying on the configuration parameter
  3. // https://symfony.com/doc/3.4/reference/configuration/framework.html#http-method-override
  4. Request::enableHttpMethodParameterOverride();
  5. $request Request::createFromGlobals();
  6. $response $kernel->handle($request);
  7. $response->send();
  8. $kernel->terminate($request$response);

Logs

Level Channel Message
INFO 12:14:17 doctrine Connecting with parameters {params}
{
    "params": {
        "url": "<redacted>",
        "driver": "pdo_mysql",
        "host": "rm9b6.myd.infomaniak.com",
        "port": 3306,
        "user": "rm9b6_bn_invest",
        "password": "<redacted>",
        "driverOptions": {
            "1002": "SET SESSION sql_mode=(SELECT REPLACE(@@sql_mode, 'ONLY_FULL_GROUP_BY', ''))"
        },
        "defaultTableOptions": {
            "collation": "utf8mb4_unicode_ci"
        },
        "dbname": "rm9b6_bn_invest",
        "charset": "utf8mb4"
    }
}
INFO 12:14:17 deprecation User Deprecated: The Liip\ImagineBundle\Templating\FilterTrait trait is deprecated since version 2.7 and will be removed in 3.0; use Twig instead.
{
    "exception": {}
}
INFO 12:14:17 deprecation User Deprecated: The Liip\ImagineBundle\Templating\FilterExtension class is deprecated since version 2.7 and will be removed in 3.0; configure "liip_imagine.twig.mode" to "lazy" instead.
{
    "exception": {}
}
INFO 12:14:17 deprecation User Deprecated: Since symfony/security-core 5.4: Not setting the 5th argument of "Symfony\Component\Security\Core\Authorization\AuthorizationChecker::__construct" to "false" is deprecated.
{
    "exception": {}
}
INFO 12:14:17 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "sulu_security.encoder_factory" service is deprecated, use "security.password_hasher_factory" instead.
{
    "exception": {}
}
INFO 12:14:17 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactory" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactory" instead.
{
    "exception": {}
}
INFO 12:14:17 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactoryInterface" instead.
{
    "exception": {}
}
INFO 12:14:17 deprecation User Deprecated: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 12:14:17 deprecation User Deprecated: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 12:14:17 deprecation User Deprecated: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead.
{
    "exception": {}
}
INFO 12:14:17 deprecation User Deprecated: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead.
{
    "exception": {}
}
INFO 12:14:17 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "latest"
    },
    "request_uri": "https://bn-invest-com.ewm.dev/_profiler/latest?panel=exception",
    "method": "GET"
}
INFO 12:14:17 deprecation User Deprecated: Since symfony/security-bundle 5.4: Setting the $authenticatorManagerEnabled argument of "Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct" to "false" is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 12:14:17 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 12:14:17 event Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController"
}
DEBUG 12:14:17 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 12:14:17 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 12:14:17 event Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController"
}
DEBUG 12:14:17 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
INFO 12:14:17 deprecation User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "FOS\RestBundle\EventListener\ResponseStatusCodeListener::setResponseStatusCode".
{
    "event": "kernel.response",
    "listener": "FOS\\RestBundle\\EventListener\\ResponseStatusCodeListener::setResponseStatusCode"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventSubscriber\GeneratorEventSubscriber::onResponse".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventSubscriber\\GeneratorEventSubscriber::onResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SegmentSubscriber::addVaryHeader".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SegmentSubscriber::addVaryHeader"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SegmentSubscriber::addCookieHeader".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SegmentSubscriber::addCookieHeader"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\AppendAnalyticsListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\AppendAnalyticsListener::onResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Sulu\Bundle\MarkupBundle\Listener\MarkupListener::replaceMarkup".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\MarkupBundle\\Listener\\MarkupListener::replaceMarkup"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 12:14:17 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 12:14:17 event Notified event "kernel.finish_request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 12:14:17 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 12:14:17 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 12:14:17 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 12:14:17 event Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController"
}
DEBUG 12:14:17 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
INFO 12:14:17 deprecation User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\CacheControlListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\CacheControlListener::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "FOS\RestBundle\EventListener\ResponseStatusCodeListener::setResponseStatusCode".
{
    "event": "kernel.response",
    "listener": "FOS\\RestBundle\\EventListener\\ResponseStatusCodeListener::setResponseStatusCode"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "FOS\HttpCacheBundle\EventListener\TagListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\TagListener::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventSubscriber\GeneratorEventSubscriber::onResponse".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventSubscriber\\GeneratorEventSubscriber::onResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SegmentSubscriber::addVaryHeader".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SegmentSubscriber::addVaryHeader"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\SegmentSubscriber::addCookieHeader".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\SegmentSubscriber::addCookieHeader"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Sulu\Bundle\WebsiteBundle\EventListener\AppendAnalyticsListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\AppendAnalyticsListener::onResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Sulu\Bundle\MarkupBundle\Listener\MarkupListener::replaceMarkup".
{
    "event": "kernel.response",
    "listener": "Sulu\\Bundle\\MarkupBundle\\Listener\\MarkupListener::replaceMarkup"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 12:14:17 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 12:14:17 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 12:14:17 event Notified event "kernel.finish_request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 12:14:17 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 12:14:17 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 12:14:17 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 12:14:17 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 12:14:17 event Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController"
}
DEBUG 12:14:17 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Traces 2

[2/2] RuntimeError
Twig\Error\RuntimeError:
An exception has been thrown during the rendering of a template ("Invalid page number. Page: 0: $page must be positive non-zero integer").

  at templates/pages/search_properties.html.twig:67
  at Twig\Template->displayWithErrorHandling(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain :               Avec permis en force.Projet :                 Construction d\'un immeuble d\'environ 32\'000 m³.Affectations :      Bureaux, laboratoires etc.Emplacement :   Proche de l\'autoroute.Restriction :        Pas d\'activités lourdes en trafic.Prix :                    Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20), 'app' => object(AppVariable), 'googleCaptchaKey' => '6LehT9UUAAAAACFDGU16Afs9RKhWJ2ySThg6NfQ9', 'googleApisKey' => 'AIzaSyCQKLfv1JVr6mxbSALl2jlu3bbpLVd4Wo4'), array())
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain :               Avec permis en force.Projet :                 Construction d\'un immeuble d\'environ 32\'000 m³.Affectations :      Bureaux, laboratoires etc.Emplacement :   Proche de l\'autoroute.Restriction :        Pas d\'activités lourdes en trafic.Prix :                    Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20)))
     (vendor/twig/twig/src/Template.php:379)
  at Twig\Template->render(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain :               Avec permis en force.Projet :                 Construction d\'un immeuble d\'environ 32\'000 m³.Affectations :      Bureaux, laboratoires etc.Emplacement :   Proche de l\'autoroute.Restriction :        Pas d\'activités lourdes en trafic.Prix :                    Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20)), array())
     (vendor/twig/twig/src/TemplateWrapper.php:40)
  at Twig\TemplateWrapper->render(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain :               Avec permis en force.Projet :                 Construction d\'un immeuble d\'environ 32\'000 m³.Affectations :      Bureaux, laboratoires etc.Emplacement :   Proche de l\'autoroute.Restriction :        Pas d\'activités lourdes en trafic.Prix :                    Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20)))
     (vendor/twig/twig/src/Environment.php:277)
  at Twig\Environment->render('pages/search_properties.html.twig', array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain :               Avec permis en force.Projet :                 Construction d\'un immeuble d\'environ 32\'000 m³.Affectations :      Bureaux, laboratoires etc.Emplacement :   Proche de l\'autoroute.Restriction :        Pas d\'activités lourdes en trafic.Prix :                    Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20)))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('pages/search_properties.html.twig', array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain :               Avec permis en force.Projet :                 Construction d\'un immeuble d\'environ 32\'000 m³.Affectations :      Bureaux, laboratoires etc.Emplacement :   Proche de l\'autoroute.Restriction :        Pas d\'activités lourdes en trafic.Prix :                    Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20)))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('pages/search_properties.html.twig', array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain :               Avec permis en force.Projet :                 Construction d\'un immeuble d\'environ 32\'000 m³.Affectations :      Bureaux, laboratoires etc.Emplacement :   Proche de l\'autoroute.Restriction :        Pas d\'activités lourdes en trafic.Prix :                    Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20)))
     (src/Controller/Website/OfferController.php:164)
  at App\Controller\Website\OfferController->detail('-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', object(OfferRepository), object(Request), false)
     (src/Controller/Website/OfferController.php:50)
  at App\Controller\Website\OfferController->buyDetail('-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', object(OfferRepository), object(Request))
     (vendor/symfony/http-kernel/HttpKernel.php:152)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:74)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:66)                
[1/2] PageNumberInvalidException
Knp\Component\Pager\Exception\PageNumberInvalidException:
Invalid page number. Page: 0: $page must be positive non-zero integer

  at vendor/knplabs/knp-components/src/Knp/Component/Pager/Exception/PageNumberInvalidException.php:11
  at Knp\Component\Pager\Exception\PageNumberInvalidException::create(0)
     (vendor/knplabs/knp-components/src/Knp/Component/Pager/Paginator.php:59)
  at Knp\Component\Pager\Paginator->paginate(array(array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => null, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'tags' => array('Terrain')), array('id' => 135, 'status' => 'A_VENDRE', 'ref' => '158784', 'title' => '2 locaux commerciaux entièrement loués à vendre', 'description' => '', 'city' => 'Etagnières', 'surface' => '100.0', 'address' => '', 'rentAddress' => 'Vaud, Etagnières', 'buyAddress' => 'Vaud, Etagnières', 'price' => 790000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.6007366, 'lng' => 6.6086661), 'isForRent' => null, 'type' => 'Commercial', 'iconOnMap' => 'office', 'url' => '2-locaux-commerciaux-enti-rement-lou-s-vendre-135', 'images' => array('property-images/c81a854b6e02a2012a8a88f72ff03daf780521cf5d9eaaf25698f1ca9b119640-680f6dc6bdc9d.jpeg', 'property-images/2a7ddd31a3c32ac368c08743968c0d09b290b00c0ecc8501064472348451683c-680f6dc6dbfc3.jpg'), 'tags' => array('Commercial', '~100.0m<sup class=\'lh-0\'>2</sup>')), array('id' => 126, 'status' => 'A_VENDRE', 'ref' => '162423', 'title' => 'Appartement lumineux avec balcon, actuellement loué, dans un quartier calme', 'description' => 'Chemin des Foulis 2', 'city' => 'Nyon', 'surface' => '100.0', 'address' => 'Chemin des Foulis 2', 'rentAddress' => 'Vaud, Nyon', 'buyAddress' => 'Vaud, Nyon', 'price' => 870000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.3805092, 'lng' => 6.2298735), 'isForRent' => null, 'type' => 'Appartement', 'iconOnMap' => 'office', 'url' => '-ppartement-lumineux-avec-balcon-actuellement-lou-dans-un-quartier-calme-126', 'images' => array('property-images/c8d663f8db944c04e7f036ca2f386d2aa9f42f414093af179719814aeb7a2830-687f9965bad8b.jpeg', 'property-images/c9cf707f10571f2e8c4eec7dd9a72a441607b936e1c4b7c367493db0f4563de9-687f9965d5a69.jpeg', 'property-images/a6cf009ed809f0a4f032a0c504586157f8680bfcddd83be2d8e60489ee06d2f2-687f9965eef58.jpeg', 'property-images/d53031a9071d689dce27d34f294db8e17462216d45fb033c4981d65f56e2220b-687f9966117d5.jpeg', 'property-images/985162b5f63ceff7dc158e03779fb913068905d030f9a5449cc40e9bb21d3c0d-687f99662a152.jpeg', 'property-images/8b6470c7fa3a6dd965ab91a5d2fd2358e35180b744ce74c5d027673144bd2b1b-687f996645fdd.jpg', 'property-images/65ad682b078653068a26986895d8dfd72c923eea36028a099eb94f184b0dac1d-687f99665f0e7.jpeg'), 'tags' => array('Appartement', '~100.0m<sup class=\'lh-0\'>2</sup>'))), 0, 8, array('defaultSortFieldName' => 'price', 'defaultSortDirection' => 'asc'))
     (var/cache/website/dev/ContainerWHdc8sl/PaginatorInterface_82dac15.php:30)
  at ContainerWHdc8sl\PaginatorInterface_82dac15->paginate(array(array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => null, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'tags' => array('Terrain')), array('id' => 135, 'status' => 'A_VENDRE', 'ref' => '158784', 'title' => '2 locaux commerciaux entièrement loués à vendre', 'description' => '', 'city' => 'Etagnières', 'surface' => '100.0', 'address' => '', 'rentAddress' => 'Vaud, Etagnières', 'buyAddress' => 'Vaud, Etagnières', 'price' => 790000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.6007366, 'lng' => 6.6086661), 'isForRent' => null, 'type' => 'Commercial', 'iconOnMap' => 'office', 'url' => '2-locaux-commerciaux-enti-rement-lou-s-vendre-135', 'images' => array('property-images/c81a854b6e02a2012a8a88f72ff03daf780521cf5d9eaaf25698f1ca9b119640-680f6dc6bdc9d.jpeg', 'property-images/2a7ddd31a3c32ac368c08743968c0d09b290b00c0ecc8501064472348451683c-680f6dc6dbfc3.jpg'), 'tags' => array('Commercial', '~100.0m<sup class=\'lh-0\'>2</sup>')), array('id' => 126, 'status' => 'A_VENDRE', 'ref' => '162423', 'title' => 'Appartement lumineux avec balcon, actuellement loué, dans un quartier calme', 'description' => 'Chemin des Foulis 2', 'city' => 'Nyon', 'surface' => '100.0', 'address' => 'Chemin des Foulis 2', 'rentAddress' => 'Vaud, Nyon', 'buyAddress' => 'Vaud, Nyon', 'price' => 870000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.3805092, 'lng' => 6.2298735), 'isForRent' => null, 'type' => 'Appartement', 'iconOnMap' => 'office', 'url' => '-ppartement-lumineux-avec-balcon-actuellement-lou-dans-un-quartier-calme-126', 'images' => array('property-images/c8d663f8db944c04e7f036ca2f386d2aa9f42f414093af179719814aeb7a2830-687f9965bad8b.jpeg', 'property-images/c9cf707f10571f2e8c4eec7dd9a72a441607b936e1c4b7c367493db0f4563de9-687f9965d5a69.jpeg', 'property-images/a6cf009ed809f0a4f032a0c504586157f8680bfcddd83be2d8e60489ee06d2f2-687f9965eef58.jpeg', 'property-images/d53031a9071d689dce27d34f294db8e17462216d45fb033c4981d65f56e2220b-687f9966117d5.jpeg', 'property-images/985162b5f63ceff7dc158e03779fb913068905d030f9a5449cc40e9bb21d3c0d-687f99662a152.jpeg', 'property-images/8b6470c7fa3a6dd965ab91a5d2fd2358e35180b744ce74c5d027673144bd2b1b-687f996645fdd.jpg', 'property-images/65ad682b078653068a26986895d8dfd72c923eea36028a099eb94f184b0dac1d-687f99665f0e7.jpeg'), 'tags' => array('Appartement', '~100.0m<sup class=\'lh-0\'>2</sup>'))), 0, 8, array('defaultSortFieldName' => 'price', 'defaultSortDirection' => 'asc'))
     (src/Controller/Website/OfferController.php:65)
  at App\Controller\Website\OfferController->searchCardsPaginated(object(OfferRepository), object(Request), object(PaginatorInterface_82dac15), null)
     (vendor/symfony/http-kernel/HttpKernel.php:152)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 2)
     (vendor/symfony/http-kernel/HttpKernel.php:74)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 2, false)
     (vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php:86)
  at Symfony\Component\HttpKernel\HttpCache\SubRequestHandler::handle(object(HttpKernel), object(Request), 2, false)
     (vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php:80)
  at Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer->render('/_fragment?_path=_format%3Dhtml%26_locale%3Dfr%26_controller%3DApp%255CController%255CWebsite%255COfferController%253A%253AsearchCardsPaginated', object(Request), array('ignore_errors' => false))
     (vendor/symfony/http-kernel/Fragment/FragmentHandler.php:85)
  at Symfony\Component\HttpKernel\Fragment\FragmentHandler->render(object(ControllerReference), 'inline', array('ignore_errors' => false))
     (vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php:49)
  at Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler->render(object(ControllerReference), 'inline', array())
     (vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php:44)
  at Symfony\Bridge\Twig\Extension\HttpKernelRuntime->renderFragment(object(ControllerReference))
     (var/cache/website/dev/twig/ea/eae02df52effad762c6c641ad276cd2dbd53974eb527dfc5f93caaa6c6edef92.php:137)
  at __TwigTemplate_ff7053ff8044f35c80b52ffd323f9c5d3c86b9818573fbcb583eb51cb26c0d62->doDisplay(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain :               Avec permis en force.Projet :                 Construction d\'un immeuble d\'environ 32\'000 m³.Affectations :      Bureaux, laboratoires etc.Emplacement :   Proche de l\'autoroute.Restriction :        Pas d\'activités lourdes en trafic.Prix :                    Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20), 'app' => object(AppVariable), 'googleCaptchaKey' => '6LehT9UUAAAAACFDGU16Afs9RKhWJ2ySThg6NfQ9', 'googleApisKey' => 'AIzaSyCQKLfv1JVr6mxbSALl2jlu3bbpLVd4Wo4'), array())
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain :               Avec permis en force.Projet :                 Construction d\'un immeuble d\'environ 32\'000 m³.Affectations :      Bureaux, laboratoires etc.Emplacement :   Proche de l\'autoroute.Restriction :        Pas d\'activités lourdes en trafic.Prix :                    Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20), 'app' => object(AppVariable), 'googleCaptchaKey' => '6LehT9UUAAAAACFDGU16Afs9RKhWJ2ySThg6NfQ9', 'googleApisKey' => 'AIzaSyCQKLfv1JVr6mxbSALl2jlu3bbpLVd4Wo4'), array())
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain :               Avec permis en force.Projet :                 Construction d\'un immeuble d\'environ 32\'000 m³.Affectations :      Bureaux, laboratoires etc.Emplacement :   Proche de l\'autoroute.Restriction :        Pas d\'activités lourdes en trafic.Prix :                    Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20)))
     (vendor/twig/twig/src/Template.php:379)
  at Twig\Template->render(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain :               Avec permis en force.Projet :                 Construction d\'un immeuble d\'environ 32\'000 m³.Affectations :      Bureaux, laboratoires etc.Emplacement :   Proche de l\'autoroute.Restriction :        Pas d\'activités lourdes en trafic.Prix :                    Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20)), array())
     (vendor/twig/twig/src/TemplateWrapper.php:40)
  at Twig\TemplateWrapper->render(array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain :               Avec permis en force.Projet :                 Construction d\'un immeuble d\'environ 32\'000 m³.Affectations :      Bureaux, laboratoires etc.Emplacement :   Proche de l\'autoroute.Restriction :        Pas d\'activités lourdes en trafic.Prix :                    Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20)))
     (vendor/twig/twig/src/Environment.php:277)
  at Twig\Environment->render('pages/search_properties.html.twig', array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain :               Avec permis en force.Projet :                 Construction d\'un immeuble d\'environ 32\'000 m³.Affectations :      Bureaux, laboratoires etc.Emplacement :   Proche de l\'autoroute.Restriction :        Pas d\'activités lourdes en trafic.Prix :                    Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20)))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('pages/search_properties.html.twig', array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain :               Avec permis en force.Projet :                 Construction d\'un immeuble d\'environ 32\'000 m³.Affectations :      Bureaux, laboratoires etc.Emplacement :   Proche de l\'autoroute.Restriction :        Pas d\'activités lourdes en trafic.Prix :                    Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20)))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('pages/search_properties.html.twig', array('seo' => array('title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'metaDescription' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'topTitle' => 'Biens à acheter', 'bottomTitle' => 'Biens à acheter'), 'request' => object(Request), 'detail' => array('id' => 137, 'status' => 'A_VENDRE', 'ref' => '158429', 'title' => 'Terrain avec permis en force pour construction d\'un immeuble administratif Industriel artisanal', 'description' => '', 'city' => 'Crissier', 'surface' => '', 'address' => '', 'rentAddress' => 'Vaud, Crissier', 'buyAddress' => 'Vaud, Crissier', 'price' => 580000, 'displayAddress' => true, 'coordinates' => array('lat' => 46.55375, 'lng' => 6.5875147), 'isForRent' => false, 'type' => 'Terrain', 'iconOnMap' => 'office', 'url' => '-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', 'images' => array('property-images/c2aba5282f2959b428c8919c8eb518bc7d3aaee9dd5666f63b314ba3ed81db01-68663885b26a8.jpg', 'property-images/ba66765ad01fa6f6ee88ad5caa98abb00ee6b542890568acce36c05c80e7088d-68663885cbc0b.jpeg'), 'fullDescription' => 'Terrain :               Avec permis en force.Projet :                 Construction d\'un immeuble d\'environ 32\'000 m³.Affectations :      Bureaux, laboratoires etc.Emplacement :   Proche de l\'autoroute.Restriction :        Pas d\'activités lourdes en trafic.Prix :                    Sur demande.', 'amenities' => array(), 'contactPersonVisits' => array('name' => 'Anabela RAMUZ', 'phone' => '+41(0)22 809 06 90', 'email' => 'anabela.ramuz@bernard-nicod.ch'), 'availability' => 'A convenir', 'similar' => array()), 'radiusOptions' => array(0, 5, 10, 15, 20)))
     (src/Controller/Website/OfferController.php:164)
  at App\Controller\Website\OfferController->detail('-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', object(OfferRepository), object(Request), false)
     (src/Controller/Website/OfferController.php:50)
  at App\Controller\Website\OfferController->buyDetail('-errain-avec-permis-en-force-pour-construction-d-un-immeuble-administratif-ndustriel-artisanal-137', object(OfferRepository), object(Request))
     (vendor/symfony/http-kernel/HttpKernel.php:152)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:74)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:66)