12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace Symfony\Component\Routing\Matcher\Dumper;
- use Symfony\Component\Routing\RouteCollection;
- interface MatcherDumperInterface
- {
-
- public function dump(array $options = []);
-
- public function getRoutes();
- }
|