You are here

public function MockMatcher::matchRequest in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/Routing/MockMatcher.php \Drupal\Tests\system\Functional\Routing\MockMatcher::matchRequest()

File

core/modules/system/tests/src/Functional/Routing/MockMatcher.php, line 31

Class

MockMatcher
A mock matcher that can be configured with any matching logic for testing.

Namespace

Drupal\Tests\system\Functional\Routing

Code

public function matchRequest(Request $request) {
  $matcher = $this->matcher;
  return $matcher($request);
}