You are here

public function TestRouteProvider::getCandidateOutlines in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Tests/Routing/RouteProviderTest.php \Drupal\system\Tests\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/modules/system/src/Tests/Routing/RouteProviderTest.php, line 619
Contains \Drupal\system\Tests\Routing\RouteProviderTest.

Class

TestRouteProvider

Namespace

Drupal\system\Tests\Routing

Code

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