| 1 | <?php |
||
| 21 | class SymfonyUrlGenerator implements UrlGeneratorInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var SymfonyUrlGeneratorInterface |
||
| 25 | */ |
||
| 26 | private $generator; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * SymfonyUrlGenerator constructor. |
||
| 30 | * |
||
| 31 | * @param SymfonyUrlGeneratorInterface $generator |
||
| 32 | */ |
||
| 33 | public function __construct(SymfonyUrlGeneratorInterface $generator) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param string $name |
||
| 40 | * @param array $parameters |
||
| 41 | * @param int $referenceType |
||
| 42 | */ |
||
| 43 | public function generate($name, $parameters = array(), $referenceType = self::ABSOLUTE_PATH) |
||
| 47 | } |
||
| 48 |