You are here

public function TestRouteProvider::getCandidateOutlines in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/KernelTests/Core/Routing/RouteProviderTest.php \Drupal\KernelTests\Core\Routing\TestRouteProvider::getCandidateOutlines()
  2. 9 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 738
Contains \Drupal\KernelTests\Core\Routing\RouteProviderTest.

Class

TestRouteProvider

Namespace

Drupal\KernelTests\Core\Routing

Code

public function getCandidateOutlines(array $parts) {
  return parent::getCandidateOutlines($parts);
}