Skip to content

Commit ea3dd1e

Browse files
committed
Prefer route configuration over automatic explicit detection
Fixes #9 Signed-off-by: Maximilian Bösing <[email protected]>
1 parent 9bf8b90 commit ea3dd1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Service/ConfigurationLocator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ private function configurationFromRoute(RouteResult $result): RouteConfiguration
100100
->withRequestMethods($allowedMethods);
101101
}
102102

103-
$routeParameters = ['explicit' => $explicit] + $routeParameters;
103+
$routeParameters = $routeParameters + ['explicit' => $explicit];
104104

105105
$routeConfiguration = $routeConfigurationFactory($routeParameters)
106106
->withRequestMethods($allowedMethods);

0 commit comments

Comments
 (0)