class Router extends Router implements WarmableInterface, ServiceSubscriberInterface
This Router creates the Loader only when the cache is empty.
protected UrlMatcherInterface|null | $matcher | from Router | |
protected UrlGeneratorInterface|null | $generator | from Router | |
protected RequestContext | $context | from Router | |
protected LoaderInterface | $loader | from Router | |
protected RouteCollection|null | $collection | from Router | |
protected mixed | $resource | from Router | |
protected array | $options | from Router | |
protected LoggerInterface|null | $logger | from Router |
__construct(ContainerInterface $container, mixed $resource, array $options = array(), RequestContext $context = null, ContainerInterface $parameters = null, LoggerInterface $logger = null) | ||
setOptions(array $options) Sets options. | from Router | |
setOption(string $key, mixed $value) Sets an option. | from Router | |
mixed | getOption(string $key) Gets an option value. | from Router |
RouteCollection | getRouteCollection() Gets the RouteCollection instance associated with this Router. | |
setContext(RequestContext $context) Sets the request context. | from Router | |
RequestContext | getContext() Gets the request context. | from Router |
setConfigCacheFactory(ConfigCacheFactoryInterface $configCacheFactory) Sets the ConfigCache factory to use. | from Router | |
string | generate(string $name, mixed $parameters = array(), int $referenceType = self::ABSOLUTE_PATH) Generates a URL or path for a specific route based on the given parameters. | from Router |
array | match(string $pathinfo) Tries to match a URL path with a set of routes. | from Router |
array | matchRequest(Request $request) Tries to match a request with a set of routes. | from Router |
UrlMatcherInterface | getMatcher() Gets the UrlMatcher instance associated with this Router. | from Router |
UrlGeneratorInterface | getGenerator() Gets the UrlGenerator instance associated with this Router. | from Router |
addExpressionLanguageProvider(ExpressionFunctionProviderInterface $provider) | from Router | |
GeneratorDumperInterface | getGeneratorDumperInstance() | from Router |
MatcherDumperInterface | getMatcherDumperInstance() | from Router |
warmUp(string $cacheDir) Warms up the cache. | ||
static array | getSubscribedServices() Returns an array of service types required by such instances, optionally keyed by the service names used internally. |
ContainerInterface | $container | A ContainerInterface instance |
mixed | $resource | The main resource to load |
array | $options | An array of options |
RequestContext | $context | The context |
ContainerInterface | $parameters | A ContainerInterface instance allowing to fetch parameters |
LoggerInterface | $logger | A logger instance |
Sets options.
Available options:
array | $options | An array of options |
InvalidArgumentException | When unsupported option is provided |
Sets an option.
string | $key | The key |
mixed | $value | The value |
InvalidArgumentException |
Gets an option value.
string | $key | The key |
mixed | The value |
InvalidArgumentException |
Gets the RouteCollection instance associated with this Router.
RouteCollection | A RouteCollection instance |
Sets the request context.
RequestContext | $context |
Gets the request context.
RequestContext | The context |
Sets the ConfigCache factory to use.
ConfigCacheFactoryInterface | $configCacheFactory |
Generates a URL or path for a specific route based on the given parameters.
Parameters that reference placeholders in the route pattern will substitute them in the path or host. Extra params are added as query string to the URL.
When the passed reference type cannot be generated for the route because it requires a different host or scheme than the current one, the method will return a more comprehensive reference that includes the required params. For example, when you call this method with $referenceType = ABSOLUTE_PATH but the route requires the https scheme whereas the current scheme is http, it will instead return an ABSOLUTE_URL with the https scheme and the current host. This makes sure the generated URL matches the route in any case.
If there is no route with the given name, the generator must throw the RouteNotFoundException.
The special parameter _fragment will be used as the document fragment suffixed to the final URL.
string | $name | The name of the route |
mixed | $parameters | An array of parameters |
int | $referenceType | The type of reference to be generated (one of the constants) |
string | The generated URL |
RouteNotFoundException | If the named route doesn't exist |
MissingMandatoryParametersException | When some parameters are missing that are mandatory for the route |
InvalidParameterException | When a parameter value for a placeholder is not correct because it does not match the requirement |
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.
string | $pathinfo | The path info to be parsed (raw format, i.e. not urldecoded) |
array | An array of parameters |
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 |
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.
Request | $request |
array | An array of parameters |
NoConfigurationException | If no routing configuration could be found |
ResourceNotFoundException | If no matching resource could be found |
MethodNotAllowedException | If a matching resource was found but the request method is not allowed |
Gets the UrlMatcher instance associated with this Router.
UrlMatcherInterface | A UrlMatcherInterface instance |
Gets the UrlGenerator instance associated with this Router.
UrlGeneratorInterface | A UrlGeneratorInterface instance |
ExpressionFunctionProviderInterface | $provider |
GeneratorDumperInterface |
MatcherDumperInterface |
Warms up the cache.
string | $cacheDir | The cache directory |
Returns an array of service types required by such instances, optionally keyed by the service names used internally.
For mandatory dependencies:
otherwise:
array | The required service types, optionally keyed by service names |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Bundle/FrameworkBundle/Routing/Router.html