Symfony Exception

No route found for "GET https://cora.pl/produkty/lider-a/"

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->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  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.         $this->requestStack->push($request);
  3.         // request
  4.         $event = new RequestEvent($this$request$type);
  5.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  6.         if ($event->hasResponse()) {
  7.             return $this->filterResponse($event->getResponse(), $request$type);
  8.         }
  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() 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 /produkty/lider-a/ HTTP/2.0 Accept: */* Host: cora.pl 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->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  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.         $this->requestStack->push($request);
  3.         // request
  4.         $event = new RequestEvent($this$request$type);
  5.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  6.         if ($event->hasResponse()) {
  7.             return $this->filterResponse($event->getResponse(), $request$type);
  8.         }
  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() 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredSupertypeNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isAbstract()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isMixin()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::hasOrderableChildNodes()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isQueryable()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getPrimaryItemName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredPropertyDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredChildNodeDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::getDeclaringNodeType()" might add "NodeTypeInterface" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::isAutoCreated()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::isMandatory()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::getOnParentVersion()" might add "int" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::isProtected()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getRequiredPrimaryTypes()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getRequiredPrimaryTypeNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getDefaultPrimaryType()" might add "NodeTypeInterface" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getDefaultPrimaryTypeName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::allowsSameNameSiblings()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredSupertypeNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isAbstract()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isMixin()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::hasOrderableChildNodes()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isQueryable()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getPrimaryItemName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredPropertyDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredChildNodeDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "JMS\Serializer\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Serializer\ArticlePageSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "JMS\Serializer\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Serializer\ArticleSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "JMS\Serializer\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Serializer\WebsiteArticleUrlsSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 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\Structure\StructureBridge" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\ArticlePageSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\ArticleSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\DateShardingSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\PageSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\WebspaceSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: Since symfony/event-dispatcher 5.1: Symfony\Component\EventDispatcher\LegacyEventDispatcherProxy is deprecated, use the event dispatcher without the proxy.
{
    "exception": {}
}
INFO 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 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 22:09:09 deprecation User Deprecated: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead.
{
    "exception": {}
}
INFO 22:09:09 deprecation User Deprecated: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead.
{
    "exception": {}
}
DEBUG 22:09:09 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was not able to match, message "No routes found for "/produkty/lider-a"."
DEBUG 22:09:09 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was not able to match, message ""
INFO 22:09:09 doctrine Connecting with parameters {params}
{
    "params": {
        "url": "<redacted>",
        "driver": "pdo_mysql",
        "host": "localhost",
        "port": 3306,
        "user": "cra_coradev_sulu",
        "password": "<redacted>",
        "driverOptions": [],
        "defaultTableOptions": {
            "collation": "utf8mb4_unicode_ci"
        },
        "dbname": "cra_coradev_sulu",
        "serverVersion": "mariadb-10.5.8",
        "charset": "utf8mb4"
    }
}
DEBUG 22:09:09 doctrine Executing statement: SELECT 1 FROM phpcr_workspaces WHERE name = ? (parameters: {params}, types: {types})
{
    "sql": "SELECT 1 FROM phpcr_workspaces WHERE name = ?",
    "params": [
        "default_live"
    ],
    "types": []
}
DEBUG 22:09:09 doctrine Executing query: SELECT prefix, uri FROM phpcr_namespaces
{
    "sql": "SELECT prefix, uri FROM phpcr_namespaces"
}
DEBUG 22:09:09 doctrine Executing statement: SELECT * FROM phpcr_nodes WHERE path = ? AND workspace_name = ? ORDER BY depth, sort_order ASC (parameters: {params}, types: {types})
{
    "sql": "\n              SELECT * FROM phpcr_nodes\n              WHERE path = ?\n                AND workspace_name = ?\n              ORDER BY depth, sort_order ASC",
    "params": [
        "/cmf/cora-www/routes/pl/produkty/lider-a",
        "default_live"
    ],
    "types": []
}
DEBUG 22:09:09 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was not able to match, message ""
DEBUG 22:09:09 doctrine Executing statement: 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 = ? (parameters: {params}, types: {types})
{
    "sql": "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 = ?",
    "params": {
        "1": "/produkty/lider-a/",
        "2": "pl"
    },
    "types": {
        "1": 2,
        "2": 2
    }
}
DEBUG 22:09:09 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was not able to match, message ""
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest"
}
INFO 22:09:09 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": {}
}
ERROR 22:09:09 request Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://cora.pl/produkty/lider-a/"" at /home/cra/domains/cora.pl/public_html/vendor/symfony/http-kernel/EventListener/RouterListener.php line 135
{
    "exception": {}
}
DEBUG 22:09:09 app Router Symfony\Bundle\FrameworkBundle\Routing\Router was not able to match, message "No routes found for "/produkty/lider-a/"."
DEBUG 22:09:09 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was not able to match, message ""
DEBUG 22:09:09 doctrine Executing statement: SELECT * FROM phpcr_nodes WHERE path = ? AND workspace_name = ? ORDER BY depth, sort_order ASC (parameters: {params}, types: {types})
{
    "sql": "\n              SELECT * FROM phpcr_nodes\n              WHERE path = ?\n                AND workspace_name = ?\n              ORDER BY depth, sort_order ASC",
    "params": [
        "/cmf/cora-www/routes/pl/produkty/lider-a",
        "default_live"
    ],
    "types": []
}
DEBUG 22:09:09 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was not able to match, message ""
DEBUG 22:09:09 doctrine Executing statement: 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 = ? (parameters: {params}, types: {types})
{
    "sql": "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 = ?",
    "params": {
        "1": "/produkty/lider-a",
        "2": "pl"
    },
    "types": {
        "1": 2,
        "2": 2
    }
}
DEBUG 22:09:09 app Router Symfony\Cmf\Bundle\RoutingBundle\Routing\DynamicRouter was not able to match, message ""
INFO 22:09:09 deprecation User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Sulu\Bundle\ThemeBundle\EventListener\SetThemeEventListener::setActiveThemeOnRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\ThemeBundle\\EventListener\\SetThemeEventListener::setActiveThemeOnRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\FormBundle\\Event\\RequestListener::onKernelRequest"
}
DEBUG 22:09:09 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 22:09:09 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 22:09:09 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 22:09:09 event Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController"
}
DEBUG 22:09:09 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 https://cora.pl/produkty/lider-a/"

  at vendor/symfony/http-kernel/EventListener/RouterListener.php:135
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php:57)
  at Sulu\Bundle\WebsiteBundle\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:128)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:74)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:66)                
[1/2] ResourceNotFoundException
Symfony\Component\Routing\Exception\ResourceNotFoundException:
None of the routers in the chain matched this request
GET /produkty/lider-a/ HTTP/2.0
Accept:         */*
Host:           cora.pl
User-Agent:     claudebot
X-Php-Ob-Level: 1



  at vendor/symfony-cmf/routing/src/ChainRouter.php:210
  at Symfony\Cmf\Component\Routing\ChainRouter->doMatch()
     (vendor/symfony-cmf/routing/src/ChainRouter.php:158)
  at Symfony\Cmf\Component\Routing\ChainRouter->matchRequest()
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:111)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/sulu/sulu/src/Sulu/Bundle/WebsiteBundle/EventListener/RouterListener.php:57)
  at Sulu\Bundle\WebsiteBundle\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:128)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:74)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:66)