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
;
14 use Symfony\Component\Routing\RouteCollection
;
17 * MatcherDumper is the abstract class for all built-in matcher dumpers.
19 * @author Fabien Potencier <fabien@symfony.com>
21 abstract class MatcherDumper
implements MatcherDumperInterface
24 * @var RouteCollection
31 * @param RouteCollection $routes The RouteCollection to dump
33 public function __construct(RouteCollection
$routes)
35 $this->routes
= $routes;
41 public function getRoutes()