public function RequestMatcherInterface::matches in Zircon Profile 8
Same name and namespace in other branches
- 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\HttpFoundationCode
public function matches(Request $request);