Skip to content

Commit

Permalink
Merge pull request #4923 from neos/bugfix-tweak-sitedetectionresult
Browse files Browse the repository at this point in the history
BUGFIX: Fix static method call in SiteDetectionResult
  • Loading branch information
mhsdesign authored Mar 8, 2024
2 parents 72195b1 + 4cf9750 commit 00679cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function storeInRequest(ServerRequestInterface $request): ServerRequestIn
{
$parameters = $request->getAttribute(ServerRequestAttributes::ROUTING_PARAMETERS)
?? RouteParameters::createEmpty();
$parameters = self::storeInRouteParameters($parameters);
$parameters = $this->storeInRouteParameters($parameters);
return $request->withAttribute(ServerRequestAttributes::ROUTING_PARAMETERS, $parameters);
}

Expand Down

0 comments on commit 00679cc

Please sign in to comment.