Skip to content

Commit a13fee6

Browse files
authored
fix(state): wrong variable name
I suspect this has no impact since everywhere using $context['uri_variables_map'] falls back on $operation->getUriVariables() anyway.
1 parent 6a628c1 commit a13fee6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

UriVariablesResolverTrait.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ private function getOperationUriVariables(HttpOperation $operation = null, array
5252

5353
foreach ($currentIdentifiers as $key => $value) {
5454
$identifiers[$key] = $value;
55-
$uriVariableMap[$key] = $uriVariableDefinition;
55+
$uriVariablesMap[$key] = $uriVariableDefinition;
5656
}
5757

5858
continue;
5959
}
6060

6161
$identifiers[$parameterName] = $parameters[$parameterName];
62-
$uriVariableMap[$parameterName] = $uriVariableDefinition;
62+
$uriVariablesMap[$parameterName] = $uriVariableDefinition;
6363
}
6464

6565
if ($this->uriVariablesConverter) {

0 commit comments

Comments
 (0)