You are here

class MockMatcher 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

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

Hierarchy

  • class \Drupal\Tests\system\Functional\Routing\MockMatcher implements \Symfony\Component\Routing\Matcher\RequestMatcherInterface

Expanded class hierarchy of MockMatcher

File

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

Namespace

Drupal\Tests\system\Functional\Routing
View source
class MockMatcher implements RequestMatcherInterface {

  /**
   * The matcher being tested.
   */
  protected $matcher;

  /**
   * Constructs a MockMatcher object.
   *
   * @param \Closure $matcher
   *   An anonymous function that will be used for the matchRequest() method.
   */
  public function __construct(\Closure $matcher) {
    $this->matcher = $matcher;
  }

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

}

Members

Namesort descending Modifiers Type Description Overrides
MockMatcher::$matcher protected property The matcher being tested.
MockMatcher::matchRequest public function Tries to match a request with a set of routes.
MockMatcher::__construct public function Constructs a MockMatcher object.