You are here

public function MatcherDumperInterface::dump in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/routing/Matcher/Dumper/MatcherDumperInterface.php \Symfony\Component\Routing\Matcher\Dumper\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

5 methods override MatcherDumperInterface::dump()
ApacheMatcherDumper::dump in vendor/symfony/routing/Matcher/Dumper/ApacheMatcherDumper.php
Dumps a set of Apache mod_rewrite rules.
MatcherDumper::dump in core/lib/Drupal/Core/ProxyClass/Routing/MatcherDumper.php
Dumps a set of routes to a string representation of executable code that can then be used to match a request against these routes.
MatcherDumper::dump in core/lib/Drupal/Core/Routing/MatcherDumper.php
Dumps a set of routes to the router table in the database.
NullMatcherDumper::dump in core/lib/Drupal/Core/Routing/NullMatcherDumper.php
Dumps a set of routes to the router table in the database.
PhpMatcherDumper::dump in vendor/symfony/routing/Matcher/Dumper/PhpMatcherDumper.php
Dumps a set of routes to a PHP class.

File

vendor/symfony/routing/Matcher/Dumper/MatcherDumperInterface.php, line 31

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());