Elgg  Version master
UrlMatcher.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Elgg\Router;
4 
8 class UrlMatcher extends \Symfony\Component\Routing\Matcher\UrlMatcher {
9 
16  public function __construct(RouteCollection $routes, RequestContext $context) {
17  parent::__construct($routes, $context);
18  }
19 }
$context
Definition: add.php:8
UrlMatcher Wrapper.
Definition: UrlMatcher.php:8
RouteCollection Wrapper.
RequestContext Wrapper.
__construct(RouteCollection $routes, RequestContext $context)
Create a new UrlMatcher.
Definition: UrlMatcher.php:16