123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- namespace Symfony\Component\Routing\Matcher\Dumper;
- use Symfony\Component\Routing\Route;
- class DumperRoute
- {
-
- private $name;
-
- private $route;
-
- public function __construct($name, Route $route)
- {
- $this->name = $name;
- $this->route = $route;
- }
-
- public function getName()
- {
- return $this->name;
- }
-
- public function getRoute()
- {
- return $this->route;
- }
- }
|