12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace Symfony\Component\Routing\Loader\Configurator;
- use Symfony\Component\Routing\RouteCollection;
- class RouteConfigurator
- {
- use Traits\AddTrait;
- use Traits\RouteTrait;
- private $parentConfigurator;
- public function __construct(RouteCollection $collection, $route, string $name = '', CollectionConfigurator $parentConfigurator = null, array $prefixes = null)
- {
- $this->collection = $collection;
- $this->route = $route;
- $this->name = $name;
- $this->parentConfigurator = $parentConfigurator;
- $this->prefixes = $prefixes;
- }
- }
|