public function RequestMatcher::matchPath

Adds a check for the URL path info.

Parameters

string $regexp A Regexp:

1 call to RequestMatcher::matchPath()
RequestMatcher::__construct in drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/RequestMatcher.php

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/RequestMatcher.php, line 81

Class

RequestMatcher
RequestMatcher compares a pre-defined set of checks against a Request instance.

Namespace

Symfony\Component\HttpFoundation

Code

public function matchPath($regexp) {
  $this->path = $regexp;
}