RequestMatcherInterface

interface RequestMatcherInterface

RequestMatcherInterface is the interface that all request matcher classes must implement.

Methods

array matchRequest(Request $request)

Tries to match a request with a set of routes.

Details

array matchRequest(Request $request)

Tries to match a request with a set of routes.

If the matcher can not find information, it must throw one of the exceptions documented below.

Parameters

Request $request The request to match

Return Value

array An array of parameters

Exceptions

ResourceNotFoundException If no matching resource could be found
MethodNotAllowedException If a matching resource was found but the request method is not allowed

© 2004–2017 Fabien Potencier
Licensed under the MIT License.
http://api.symfony.com/3.2/Symfony/Component/Routing/Matcher/RequestMatcherInterface.html