You are here

public function RequestMatcherInterface::matches in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-foundation/RequestMatcherInterface.php \Symfony\Component\HttpFoundation\RequestMatcherInterface::matches()

Decides whether the rule(s) implemented by the strategy matches the supplied request.

Parameters

Request $request The request to check for a match:

Return value

bool true if the request matches, false otherwise

1 method overrides RequestMatcherInterface::matches()
RequestMatcher::matches in vendor/symfony/http-foundation/RequestMatcher.php
Decides whether the rule(s) implemented by the strategy matches the supplied request.

File

vendor/symfony/http-foundation/RequestMatcherInterface.php, line 28

Class

RequestMatcherInterface
RequestMatcherInterface is an interface for strategies to match a Request.

Namespace

Symfony\Component\HttpFoundation

Code

public function matches(Request $request);