UrlMatcherInterface
interface UrlMatcherInterface implements RequestContextAwareInterface
UrlMatcherInterface is the interface that all URL matcher classes must implement.
Methods
setContext(RequestContext $context) Sets the request context. | from RequestContextAwareInterface | |
RequestContext | getContext() Gets the request context. | from RequestContextAwareInterface |
array | match(string $pathinfo) Tries to match a URL path with a set of routes. |
Details
setContext(RequestContext $context)
Sets the request context.
Parameters
RequestContext | $context | The context |
RequestContext getContext()
Gets the request context.
Return Value
RequestContext | The context |
array match(string $pathinfo)
Tries to match a URL path with a set of routes.
If the matcher can not find information, it must throw one of the exceptions documented below.
Parameters
string | $pathinfo | The path info to be parsed (raw format, i.e. not urldecoded) |
Return Value
array | An array of parameters |
Exceptions
NoConfigurationException | If no routing configuration could be found |
ResourceNotFoundException | If the resource could not be found |
MethodNotAllowedException | If the resource was found but the request method is not allowed |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
http://api.symfony.com/4.0/Symfony/Component/Routing/Matcher/UrlMatcherInterface.html