public function TestRouteProvider::getCandidateOutlines in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/KernelTests/Core/Routing/RouteProviderTest.php \Drupal\KernelTests\Core\Routing\TestRouteProvider::getCandidateOutlines()
Returns an array of path pattern outlines that could match the path parts.
Parameters
array $parts: The parts of the path for which we want candidates.
Return value
array An array of outlines that could match the specified path parts.
Overrides RouteProvider::getCandidateOutlines
File
- core/
tests/ Drupal/ KernelTests/ Core/ Routing/ RouteProviderTest.php, line 785 - Contains \Drupal\KernelTests\Core\Routing\RouteProviderTest.
Class
Namespace
Drupal\KernelTests\Core\RoutingCode
public function getCandidateOutlines(array $parts) {
return parent::getCandidateOutlines($parts);
}