public ParamConversionEnhancer::applies(Route $route)
Declares if the route enhancer applies to the given route.
Parameters
\Symfony\Component\Routing\Route $route: The route to consider attaching to.
Return value
bool TRUE if the check applies to the passed route, False otherwise.
Overrides RouteEnhancerInterface::applies
File
- core/lib/Drupal/Core/Routing/Enhancer/ParamConversionEnhancer.php, line 95
Class
- ParamConversionEnhancer
- Provides a route enhancer that handles parameter conversion.
Namespace
Drupal\Core\Routing\Enhancer
Code
1 2 3 | public function applies(Route $route ) { return TRUE; } |
Please login to continue.