routeParamsPreprocessors = $routeParamsPreprocessors; } /** * {@inheritdoc} */ public function execute($areaCode, $routePath, $routeParams) { foreach ($this->routeParamsPreprocessors as $preprocessor) { $routeParams = $preprocessor->execute($areaCode, $routePath, $routeParams); } return $routeParams; } }