public function GeneratorDumperInterface::dump in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/routing/Generator/Dumper/GeneratorDumperInterface.php \Symfony\Component\Routing\Generator\Dumper\GeneratorDumperInterface::dump()
Dumps a set of routes to a string representation of executable code that can then be used to generate a URL of such a route.
Parameters
array $options An array of options:
Return value
string Executable code
1 method overrides GeneratorDumperInterface::dump()
- PhpGeneratorDumper::dump in vendor/
symfony/ routing/ Generator/ Dumper/ PhpGeneratorDumper.php - Dumps a set of routes to a PHP class.
File
- vendor/
symfony/ routing/ Generator/ Dumper/ GeneratorDumperInterface.php, line 31
Class
- GeneratorDumperInterface
- GeneratorDumperInterface is the interface that all generator dumper classes must implement.
Namespace
Symfony\Component\Routing\Generator\DumperCode
public function dump(array $options = array());