| 1 | <?php |
||
| 10 | class SymfonyUrlGenerator implements UrlGeneratorInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var SymfonyUrlGeneratorInterface |
||
| 14 | */ |
||
| 15 | private $urlGenerator; |
||
| 16 | |||
| 17 | public function __construct(SymfonyUrlGeneratorInterface $urlGenerator) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | public function generate($name, array $parameters, $absolute = false) |
||
| 37 | } |
||
| 38 |