We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2153a1d commit 37e620eCopy full SHA for 37e620e
app/code/Magento/UrlRewrite/Controller/Router.php
@@ -77,7 +77,7 @@ public function __construct(
77
public function match(RequestInterface $request)
78
{
79
$rewrite = $this->getRewrite(
80
- $this->getNormalizedRequestPath($request),
+ $this->getNormalizedPathInfo($request),
81
$this->storeManager->getStore()->getId()
82
);
83
@@ -160,7 +160,7 @@ protected function getRewrite($requestPath, $storeId)
160
* @param RequestInterface|HttpRequest $request
161
* @return string
162
*/
163
- private function getNormalizedRequestPath(RequestInterface $request): string
+ private function getNormalizedPathInfo(RequestInterface $request): string
164
165
$path = $request->getPathInfo();
166
/**
0 commit comments