123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace Symfony\Component\Routing\Matcher\Dumper;
- use Symfony\Component\Routing\RouteCollection;
- abstract class MatcherDumper implements MatcherDumperInterface
- {
-
- private $routes;
-
- public function __construct(RouteCollection $routes)
- {
- $this->routes = $routes;
- }
-
- public function getRoutes()
- {
- return $this->routes;
- }
- }
|