| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 11 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 32 | public function filter( | ||
| 33 | string $path, | ||
| 34 | string $filter, | ||
| 35 | array $config = [], | ||
| 36 | ?string $resolver = null, | ||
| 37 | int $referenceType = UrlGeneratorInterface::ABSOLUTE_URL | ||
| 38 |     ): string { | ||
| 39 | $path = parse_url($path, PHP_URL_PATH); | ||
| 40 | |||
| 41 | return $this->cache->getBrowserPath($path, $filter, $config, $resolver, $referenceType); | ||
| 42 | } | ||
| 43 | |||
| 70 |