1 | <?php |
||
11 | class URLAliasService implements URLAliasServiceInterface |
||
12 | { |
||
13 | /** @var Symfony\Component\EventDispatcher\EventDispatcherInterface */ |
||
14 | protected $eventDispatcher; |
||
15 | |||
16 | public function __construct(URLAliasServiceInterface $innerService, EventDispatcherInterface $eventDispatcher) |
||
22 | |||
23 | public function createUrlAlias(Location $location, $path, $languageCode, $forwarding = false, $alwaysAvailable = false) |
||
27 | |||
28 | public function createGlobalUrlAlias($resource, $path, $languageCode, $forwarding = false, $alwaysAvailable = false) |
||
32 | |||
33 | public function listLocationAliases(Location $location, $custom = true, $languageCode = null) |
||
37 | |||
38 | public function listGlobalAliases($languageCode = null, $offset = 0, $limit = -1) |
||
42 | |||
43 | public function removeAliases(array $aliasList) |
||
47 | |||
48 | public function lookup($url, $languageCode = null) |
||
52 | |||
53 | public function reverseLookup(Location $location, $languageCode = null) |
||
57 | |||
58 | public function load($id) |
||
62 | |||
63 | public function refreshSystemUrlAliasesForLocation(Location $location): void |
||
67 | |||
68 | public function deleteCorruptedUrlAliases(): int |
||
72 | } |
||
73 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.