You are here

public function MockMatcher::__construct 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::__construct()

Constructs a MockMatcher object.

Parameters

\Closure $matcher: An anonymous function that will be used for the matchRequest() method.

File

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

Class

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

Namespace

Drupal\Tests\system\Functional\Routing

Code

public function __construct(\Closure $matcher) {
  $this->matcher = $matcher;
}