| Conditions | 2 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 39 | public function generateSiteUrl($site, string $name, array $parameters = [], $schemeRelative = false): string |
||
| 40 | { |
||
| 41 | $parameters['site'] = $site; |
||
| 42 | |||
| 43 | return $this->urlGenerator->generate( |
||
| 44 | $name, |
||
| 45 | $parameters, |
||
| 46 | $schemeRelative ? UrlGeneratorInterface::NETWORK_PATH : UrlGeneratorInterface::ABSOLUTE_URL |
||
| 47 | ); |
||
| 50 |