abstract class MatcherDumper in Zircon Profile 8
Same name in this branch
- 8 vendor/symfony/routing/Matcher/Dumper/MatcherDumper.php \Symfony\Component\Routing\Matcher\Dumper\MatcherDumper
- 8 core/lib/Drupal/Core/Routing/MatcherDumper.php \Drupal\Core\Routing\MatcherDumper
- 8 core/lib/Drupal/Core/ProxyClass/Routing/MatcherDumper.php \Drupal\Core\ProxyClass\Routing\MatcherDumper
Same name and namespace in other branches
- 8.0 vendor/symfony/routing/Matcher/Dumper/MatcherDumper.php \Symfony\Component\Routing\Matcher\Dumper\MatcherDumper
MatcherDumper is the abstract class for all built-in matcher dumpers.
@author Fabien Potencier <fabien@symfony.com>
Hierarchy
- class \Symfony\Component\Routing\Matcher\Dumper\MatcherDumper implements MatcherDumperInterface
Expanded class hierarchy of MatcherDumper
File
- vendor/
symfony/ routing/ Matcher/ Dumper/ MatcherDumper.php, line 21
Namespace
Symfony\Component\Routing\Matcher\DumperView source
abstract class MatcherDumper implements MatcherDumperInterface {
/**
* @var RouteCollection
*/
private $routes;
/**
* Constructor.
*
* @param RouteCollection $routes The RouteCollection to dump
*/
public function __construct(RouteCollection $routes) {
$this->routes = $routes;
}
/**
* {@inheritdoc}
*/
public function getRoutes() {
return $this->routes;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MatcherDumper:: |
private | property | ||
MatcherDumper:: |
public | function |
Gets the routes to dump. Overrides MatcherDumperInterface:: |
|
MatcherDumper:: |
public | function | Constructor. | |
MatcherDumperInterface:: |
public | function | Dumps a set of routes to a string representation of executable code that can then be used to match a request against these routes. | 5 |