Skip to content

Commit

Permalink
BUGFIX: Fix static method call in SiteDetectionResult
Browse files Browse the repository at this point in the history
  • Loading branch information
bwaidelich authored Mar 8, 2024
1 parent 72195b1 commit 4cf9750
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 4cf9750

Please sign in to comment.