class TraceableUrlMatcher extends UrlMatcher

TraceableUrlMatcher helps debug path info matching by tracing the match.

Constants

REQUIREMENT_MATCH

REQUIREMENT_MISMATCH

ROUTE_MATCH

ROUTE_DOES_NOT_MATCH

ROUTE_ALMOST_MATCHES

ROUTE_MATCHES

Methods

__construct(RouteCollection $routes, RequestContext $context)

Constructor.

setContext(RequestContext $context)

Sets the request context.

getContext()

Gets the request context.

array
match(string $pathinfo)

Tries to match a URL path with a set of routes.

array
matchRequest(Request $request)

Tries to match a request with a set of routes.

getTraces($pathinfo)

No description

Details

in UrlMatcher at line line 63
__construct(RouteCollection $routes, RequestContext $context)

Constructor.

Parameters

RouteCollection $routes A RouteCollection instance
RequestContext $context The context

in UrlMatcher at line line 72
setContext(RequestContext $context)

Sets the request context.

Parameters

RequestContext $context The context

in UrlMatcher at line line 80
RequestContext getContext()

Gets the request context.

Return Value

RequestContext The context

in UrlMatcher at line line 88
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

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

in UrlMatcher at line line 104
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

in UrlMatcher at line line 115
addExpressionLanguageProvider(ExpressionFunctionProviderInterface $provider)

at line line 31
getTraces($pathinfo)

Parameters

$pathinfo