public function MatcherDumperInterface::dump

Dumps a set of routes to a string representation of executable code that can then be used to match a request against these routes.

Parameters

array $options An array of options:

Return value

string Executable code

3 methods override MatcherDumperInterface::dump()
ApacheMatcherDumper::dump in drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Matcher/Dumper/ApacheMatcherDumper.php
Dumps a set of Apache mod_rewrite rules.
MatcherDumper::dump in drupal/core/lib/Drupal/Core/Routing/MatcherDumper.php
Dumps a set of routes to the router table in the database.
PhpMatcherDumper::dump in drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Matcher/Dumper/PhpMatcherDumper.php
Dumps a set of routes to a PHP class.

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Matcher/Dumper/MatcherDumperInterface.php, line 29

Class

MatcherDumperInterface
MatcherDumperInterface is the interface that all matcher dumper classes must implement.

Namespace

Symfony\Component\Routing\Matcher\Dumper

Code

public function dump(array $options = array());