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\Matcher\Dumper
;
15 * MatcherDumperInterface is the interface that all matcher dumper classes must implement.
17 * @author Fabien Potencier <fabien@symfony.com>
19 interface MatcherDumperInterface
22 * Dumps a set of routes to a string representation of executable code
23 * that can then be used to match a request against these routes.
25 * @param array $options An array of options
27 * @return string Executable code
29 public function dump(array $options = array());
32 * Gets the routes to dump.
34 * @return RouteCollection A RouteCollection instance
36 public function getRoutes();