4 * This file is part of the Symfony package.
6 * (c) Fabien Potencier <fabien@symfony.com>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Symfony\Component\Routing\Generator\Dumper
;
14 use Symfony\Component\Routing\RouteCollection
;
17 * GeneratorDumperInterface is the interface that all generator dumper classes must implement.
19 * @author Fabien Potencier <fabien@symfony.com>
23 interface GeneratorDumperInterface
26 * Dumps a set of routes to a string representation of executable code
27 * that can then be used to generate a URL of such a route.
29 * @param array $options An array of options
31 * @return string Executable code
33 public function dump(array $options = array());
36 * Gets the routes to dump.
38 * @return RouteCollection A RouteCollection instance
40 public function getRoutes();