public function MockRouteProvider::getRoutesByPattern in Drupal 8
Same name and namespace in other branches
- 9 core/modules/system/src/Tests/Routing/MockRouteProvider.php \Drupal\system\Tests\Routing\MockRouteProvider::getRoutesByPattern()
Get all routes which match a certain pattern.
Parameters
string $pattern: The route pattern to search for (contains {} as placeholders).
Return value
\Symfony\Component\Routing\RouteCollection Returns a route collection of matching routes. The collection may be empty and will be sorted from highest to lowest fit (match of path parts) and then in ascending order by route name for routes with the same fit.
Overrides RouteProviderInterface::getRoutesByPattern
File
- core/
modules/ system/ src/ Tests/ Routing/ MockRouteProvider.php, line 76
Class
- MockRouteProvider
- Easily configurable mock route provider.
Namespace
Drupal\system\Tests\RoutingCode
public function getRoutesByPattern($pattern) {
return new RouteCollection();
}