1 | <?php |
||
15 | class LocationService implements LocationServiceInterface |
||
16 | { |
||
17 | /** @var Symfony\Component\EventDispatcher\EventDispatcherInterface */ |
||
18 | protected $eventDispatcher; |
||
19 | |||
20 | public function __construct(LocationServiceInterface $innerService, EventDispatcherInterface $eventDispatcher) |
||
26 | |||
27 | public function copySubtree(Location $subtree, Location $targetParentLocation) |
||
31 | |||
32 | public function loadLocation($locationId, array $prioritizedLanguages = null, bool $useAlwaysAvailable = null) |
||
36 | |||
37 | public function loadLocationList(array $locationIds, array $prioritizedLanguages = null, bool $useAlwaysAvailable = null): iterable |
||
41 | |||
42 | public function loadLocationByRemoteId($remoteId, array $prioritizedLanguages = null, bool $useAlwaysAvailable = null) |
||
46 | |||
47 | public function loadLocations(ContentInfo $contentInfo, Location $rootLocation = null, array $prioritizedLanguages = null) |
||
51 | |||
52 | public function loadLocationChildren(Location $location, $offset = 0, $limit = 25, array $prioritizedLanguages = null) |
||
56 | |||
57 | public function loadParentLocationsForDraftContent(VersionInfo $versionInfo, array $prioritizedLanguages = null) |
||
61 | |||
62 | public function getLocationChildCount(Location $location) |
||
66 | |||
67 | public function createLocation(ContentInfo $contentInfo, LocationCreateStruct $locationCreateStruct) |
||
71 | |||
72 | public function updateLocation(Location $location, LocationUpdateStruct $locationUpdateStruct) |
||
76 | |||
77 | public function swapLocation(Location $location1, Location $location2) |
||
81 | |||
82 | public function hideLocation(Location $location) |
||
86 | |||
87 | public function unhideLocation(Location $location) |
||
91 | |||
92 | public function moveSubtree(Location $location, Location $newParentLocation) |
||
96 | |||
97 | public function deleteLocation(Location $location) |
||
101 | |||
102 | public function newLocationCreateStruct($parentLocationId) |
||
106 | |||
107 | public function newLocationUpdateStruct() |
||
111 | |||
112 | public function getAllLocationsCount(): int |
||
116 | |||
117 | public function loadAllLocations(int $offset = 0, int $limit = 25): array |
||
121 | } |
||
122 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.