Symfony Exception

No route found for "GET http://naef-invest.ewm.swiss/fr/offres" (from "https://www.naef-invest.ch/fr/nos-offers-buy")

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  1.             if ($referer $request->headers->get('referer')) {
  2.                 $message .= sprintf(' (from "%s")'$referer);
  3.             }
  4.             throw new NotFoundHttpException($message$e);
  5.         } catch (MethodNotAllowedException $e) {
  6.             $message sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)'$request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', '$e->getAllowedMethods()));
  7.             throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message$e);
  8.         }
  1.         $request $event->getRequest();
  2.         // This call is required in all cases, because the default router needs our webspace information
  3.         // Would be nice to also only call this if the _requestAnalyzer attribute is set, but it's set on the next line
  4.         $this->requestAnalyzer->analyze($request);
  5.         $this->baseRouteListener->onKernelRequest($event);
  6.         if (false !== $request->attributes->getBoolean(static::REQUEST_ANALYZERtrue)) {
  7.             $this->requestAnalyzer->validate($request);
  8.         }
  9.     }
  1.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function handleRaw(Request $requestint $type self::MAIN_REQUEST): Response
  3.     {
  4.         // request
  5.         $event = new RequestEvent($this$request$type);
  6.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  7.         if ($event->hasResponse()) {
  8.             return $this->filterResponse($event->getResponse(), $request$type);
  9.         }
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
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);

Symfony\Component\Routing\Exception\ ResourceNotFoundException

None of the routers in the chain matched this request GET /fr/offres HTTP/1.1 Accept: */* Host: naef-invest.ewm.swiss Referer: https://www.naef-invest.ch/fr/nos-offers-buy User-Agent: claudebot X-Php-Ob-Level: 1

  1.         $info $request
  2.             "this request\n$request"
  3.             "url '$pathinfo'";
  4.         throw $methodNotAllowed ?: new ResourceNotFoundException("None of the routers in the chain matched $info");
  5.     }
  6.     /**
  7.      * {@inheritdoc}
  8.      *
  1.      *
  2.      * Loops through all routes and tries to match the passed request.
  3.      */
  4.     public function matchRequest(Request $request)
  5.     {
  6.         return $this->doMatch($request->getPathInfo(), $request);
  7.     }
  8.     /**
  9.      * Loops through all routers and tries to match the passed request or url.
  10.      *
  1.         // add attributes based on the request (routing)
  2.         try {
  3.             // matching a request is more powerful than matching a URL path + context, so try that first
  4.             if ($this->matcher instanceof RequestMatcherInterface) {
  5.                 $parameters $this->matcher->matchRequest($request);
  6.             } else {
  7.                 $parameters $this->matcher->match($request->getPathInfo());
  8.             }
  9.             if (null !== $this->logger) {
  1.         $request $event->getRequest();
  2.         // This call is required in all cases, because the default router needs our webspace information
  3.         // Would be nice to also only call this if the _requestAnalyzer attribute is set, but it's set on the next line
  4.         $this->requestAnalyzer->analyze($request);
  5.         $this->baseRouteListener->onKernelRequest($event);
  6.         if (false !== $request->attributes->getBoolean(static::REQUEST_ANALYZERtrue)) {
  7.             $this->requestAnalyzer->validate($request);
  8.         }
  9.     }
  1.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function handleRaw(Request $requestint $type self::MAIN_REQUEST): Response
  3.     {
  4.         // request
  5.         $event = new RequestEvent($this$request$type);
  6.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  7.         if ($event->hasResponse()) {
  8.             return $this->filterResponse($event->getResponse(), $request$type);
  9.         }
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
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 1

Level Channel Message
INFO 14:58:57 deprecation User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::registerBundles()" might add "iterable" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\HttpKernel\SuluKernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "Symfony\Component\HttpKernel\Kernel::getContainerClass()" might add "string" as a native return type declaration in the future. Do the same in child class "Sulu\Component\HttpKernel\SuluKernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::getCacheDir()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\HttpKernel\SuluKernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::getLogDir()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\HttpKernel\SuluKernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "Symfony\Component\HttpKernel\Kernel::getKernelParameters()" might add "array" as a native return type declaration in the future. Do the same in child class "Sulu\Component\HttpKernel\SuluKernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "FOS\HttpCache\SymfonyCache\HttpCacheProvider::getHttpCache()" might add "?HttpKernelInterface" as a native return type declaration in the future. Do the same in implementation "App\Kernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 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 14:58:57 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 14:58:57 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getSession()" might add "SessionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getLockManager()" might add "LockManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getQueryManager()" might add "QueryManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getTransactionManager()" might add "UserTransactionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getNamespaceRegistry()" might add "NamespaceRegistryInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getNodeTypeManager()" might add "NodeTypeManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getObservationManager()" might add "ObservationManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getRepositoryManager()" might add "RepositoryManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getVersionManager()" might add "VersionManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getAccessibleWorkspaceNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\NamespaceRegistryInterface::getPrefixes()" might add "array" as a native return type declaration in the future. Do the same in implementation "Jackalope\NamespaceRegistry" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\NamespaceRegistryInterface::getURIs()" might add "array" as a native return type declaration in the future. Do the same in implementation "Jackalope\NamespaceRegistry" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\NamespaceRegistryInterface::getURI()" might add "string" as a native return type declaration in the future. Do the same in implementation "Jackalope\NamespaceRegistry" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\NamespaceRegistryInterface::getPrefix()" might add "string" as a native return type declaration in the future. Do the same in implementation "Jackalope\NamespaceRegistry" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\NamespaceRegistryInterface::getNamespaces()" might add "array" as a native return type declaration in the future. Do the same in implementation "Jackalope\NamespaceRegistry" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::getNodeType()" might add "NodeTypeInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::hasNodeType()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::getAllNodeTypes()" might add "Iterator" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::getPrimaryNodeTypes()" might add "Iterator" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::getMixinNodeTypes()" might add "Iterator" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::createNodeTypeTemplate()" might add "NodeTypeTemplateInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::createNodeDefinitionTemplate()" might add "NodeDefinitionTemplateInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::createPropertyDefinitionTemplate()" might add "PropertyDefinitionTemplateInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::registerNodeType()" might add "NodeTypeInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::registerNodeTypes()" might add "Iterator" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::registerNodeTypesCnd()" might add "Iterator" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Transaction\UserTransactionInterface::inTransaction()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Jackalope\Transaction\UserTransaction" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\MessageDigestPasswordEncoder" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\MessageDigestPasswordHasher" instead.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\BasePasswordEncoder" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\CheckPasswordLengthTrait" instead.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\PasswordEncoderInterface" class is deprecated, use "Symfony\Component\PasswordHasher\PasswordHasherInterface" instead.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "Swift_Transport_EsmtpHandler::getMailParams()" might add "array" as a native return type declaration in the future. Do the same in implementation "Swift_Transport_Esmtp_AuthHandler" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "Swift_Transport_EsmtpHandler::getRcptParams()" might add "array" as a native return type declaration in the future. Do the same in implementation "Swift_Transport_Esmtp_AuthHandler" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "Swift_Transport_Esmtp_Authenticator::authenticate()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Swift_Transport_Esmtp_Auth_CramMd5Authenticator" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "Swift_Transport_Esmtp_Authenticator::authenticate()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Swift_Transport_Esmtp_Auth_LoginAuthenticator" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "Swift_Transport_Esmtp_Authenticator::authenticate()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Swift_Transport_Esmtp_Auth_PlainAuthenticator" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "Swift_Transport_Esmtp_Authenticator::authenticate()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Swift_Transport_Esmtp_Auth_NTLMAuthenticator" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "Swift_Transport::ping()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Swift_Transport_AbstractSmtpTransport" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "Swift_OutputByteStream::setReadPointer()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Swift_Transport_StreamBuffer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "Symfony\Component\Security\Core\User\EquatableInterface::isEqualTo()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\SecurityBundle\Entity\User" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getRoles()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\SecurityBundle\Entity\User" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QueryManagerInterface::createQuery()" might add "QueryInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QueryManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QueryManagerInterface::getQOMFactory()" might add "QueryObjectModelFactoryInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QueryManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QueryManagerInterface::getQuery()" might add "QueryInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QueryManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QueryManagerInterface::getSupportedQueryLanguages()" might add "array" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QueryManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::createQuery()" might add "QueryObjectModelInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::selector()" might add "SelectorInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::join()" might add "JoinInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::equiJoinCondition()" might add "EquiJoinConditionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::sameNodeJoinCondition()" might add "SameNodeJoinConditionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::childNodeJoinCondition()" might add "ChildNodeJoinConditionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::descendantNodeJoinCondition()" might add "DescendantNodeJoinConditionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::andConstraint()" might add "AndInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::orConstraint()" might add "OrInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::notConstraint()" might add "NotInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::comparison()" might add "ComparisonInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::propertyExistence()" might add "PropertyExistenceInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::fullTextSearch()" might add "FullTextSearchInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::sameNode()" might add "SameNodeInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::childNode()" might add "ChildNodeInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::descendantNode()" might add "DescendantNodeInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::propertyValue()" might add "PropertyValueInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::length()" might add "LengthInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::nodeName()" might add "NodeNameInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::nodeLocalName()" might add "NodeLocalNameInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::fullTextSearchScore()" might add "FullTextSearchScoreInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::lowerCase()" might add "LowerCaseInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::upperCase()" might add "UpperCaseInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::bindVariable()" might add "BindVariableValueInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::literal()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::ascending()" might add "OrderingInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::descending()" might add "OrderingInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::column()" might add "ColumnInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "JsonSerializable::jsonSerialize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Content\Compat\Property" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.metadata_bag" service is deprecated, create your own "session.storage.factory" instead.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "IteratorAggregate::getIterator()" might add "\Traversable" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Webspace\Manager\WebspaceCollection" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Method "JsonSerializable::jsonSerialize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Localization\Localization" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead.
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead.
{
    "exception": {}
}
DEBUG 14:58:57 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was not able to match, message "No routes found for "/fr/offres/"."
DEBUG 14:58:57 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was not able to match, message ""
INFO 14:58:57 deprecation User Deprecated: Method "PDO::exec()" might add "int|false" as a native return type declaration in the future. Do the same in child class "Doctrine\DBAL\Driver\PDOConnection" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
DEBUG 14:58:57 doctrine SELECT 1 FROM phpcr_workspaces WHERE name = ?
[
    "default_live"
]
DEBUG 14:58:57 doctrine SELECT prefix, uri FROM phpcr_namespaces
DEBUG 14:58:57 doctrine SELECT * FROM phpcr_nodes WHERE path = :path AND workspace_name = :workspace ORDER BY depth, sort_order ASC
{
    "path": "/cmf/naef-invest/routes/fr [...]",
    "pathd": "/cmf/naef-invest/routes/fr [...]",
    "workspace": "default_live"
}
DEBUG 14:58:57 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was not able to match, message ""
DEBUG 14:58:57 doctrine SELECT r0_.path AS path_0, r0_.locale AS locale_1, r0_.entity_class AS entity_class_2, r0_.entity_id AS entity_id_3, r0_.history AS history_4, r0_.id AS id_5, r0_.created AS created_6, r0_.changed AS changed_7, r1_.path AS path_8, r1_.locale AS locale_9, r1_.entity_class AS entity_class_10, r1_.entity_id AS entity_id_11, r1_.history AS history_12, r1_.id AS id_13, r1_.created AS created_14, r1_.changed AS changed_15, r0_.target_id AS target_id_16, r0_.idUsersCreator AS idUsersCreator_17, r0_.idUsersChanger AS idUsersChanger_18, r1_.target_id AS target_id_19, r1_.idUsersCreator AS idUsersCreator_20, r1_.idUsersChanger AS idUsersChanger_21 FROM ro_routes r0_ LEFT JOIN ro_routes r1_ ON r0_.target_id = r1_.id WHERE r0_.path = ? AND r0_.locale = ?
[
    "/offres",
    "fr"
]
DEBUG 14:58:57 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was not able to match, message ""
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest"
}
INFO 14:58:57 deprecation User Deprecated: Class "Nyholm\Psr7\Factory\HttplugFactory" is deprecated since version 1.8, use "Nyholm\Psr7\Factory\Psr17Factory" instead.
{
    "exception": {}
}
ERROR 14:58:57 request Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET http://naef-invest.ewm.swiss/fr/offres" (from "https://www.naef-invest.ch/fr/nos-offers-buy")" at /home/clients/b7d10bf6ba33597643b38868185a25af/var/www/naef-invest-be/vendor/symfony/http-kernel/EventListener/RouterListener.php line 135
{
    "exception": {}
}
INFO 14:58:57 deprecation User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\FormBundle\\Event\\RequestListener::onKernelRequest"
}
DEBUG 14:58:57 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 14:58:57 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 14:58:57 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 14:58:57 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] NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET http://naef-invest.ewm.swiss/fr/offres" (from "https://www.naef-invest.ch/fr/nos-offers-buy")

  at vendor/symfony/http-kernel/EventListener/RouterListener.php:135
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent))
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php:57)
  at Sulu\Bundle\WebsiteBundle\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:139)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:66)                
[1/2] ResourceNotFoundException
Symfony\Component\Routing\Exception\ResourceNotFoundException:
None of the routers in the chain matched this request
GET /fr/offres HTTP/1.1
Accept:         */*
Host:           naef-invest.ewm.swiss
Referer:        https://www.naef-invest.ch/fr/nos-offers-buy
User-Agent:     claudebot
X-Php-Ob-Level: 1



  at vendor/symfony-cmf/routing/src/ChainRouter.php:210
  at Symfony\Cmf\Component\Routing\ChainRouter->doMatch('/fr/offres', object(Request))
     (vendor/symfony-cmf/routing/src/ChainRouter.php:158)
  at Symfony\Cmf\Component\Routing\ChainRouter->matchRequest(object(Request))
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:111)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent))
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php:57)
  at Sulu\Bundle\WebsiteBundle\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:139)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:66)                
Loading…
Loading the web debug toolbar…
Attempt #