| 1 | <?php | ||
| 12 | class SymfonyUrlGenerator implements UrlGeneratorInterface | ||
| 13 | { | ||
| 14 | /** | ||
| 15 | * @var SymfonyUrlGeneratorInterface | ||
| 16 | */ | ||
| 17 | private $generator; | ||
| 18 | |||
| 19 | /** | ||
| 20 | * SymfonyUrlGenerator constructor. | ||
| 21 | * | ||
| 22 | * @param SymfonyUrlGeneratorInterface $generator | ||
| 23 | */ | ||
| 24 | public function __construct(SymfonyUrlGeneratorInterface $generator) | ||
| 28 | |||
| 29 | /** | ||
| 30 | * @param string $name | ||
| 31 | * @param array $parameters | ||
| 32 | * @param int $referenceType | ||
| 33 | */ | ||
| 34 | public function generate($name, $parameters = array(), $referenceType = self::ABSOLUTE_PATH) | ||
| 38 | } | ||
| 39 |