| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class UrlGenerator implements UrlGeneratorInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var Generator |
||
| 14 | */ |
||
| 15 | private $generator; |
||
| 16 | |||
| 17 | public function __construct(Generator $generator) |
||
| 18 | { |
||
| 19 | $this->generator = $generator; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function generateUrl(string $name, array $values = []): string |
||
| 25 | } |
||
| 26 | } |
||
| 27 |