diff --git a/src/contracts/Repository/LocationService.php b/src/contracts/Repository/LocationService.php index 98fc00fa2d..0b1d9802fe 100644 --- a/src/contracts/Repository/LocationService.php +++ b/src/contracts/Repository/LocationService.php @@ -98,15 +98,12 @@ public function loadLocations(ContentInfo $contentInfo, ?Location $rootLocation * Loads children which are readable by the current user of a location object sorted by sortField and sortOrder. * * Use this method with caution. It performs heavy queries on the database. - * Consider using {@see \eZ\Publish\API\Repository\SearchService::findLocations()} with - * {@see \eZ\Publish\Core\QueryType\BuiltIn\ChildrenQueryType} as an alternative. + * Consider using {@see \Ibexa\Contracts\Core\Repository\SearchService::findLocations()} with + * {@see \Ibexa\Core\QueryType\BuiltIn\ChildrenQueryType} as an alternative. * - * @param \Ibexa\Contracts\Core\Repository\Values\Content\Location $location * @param int $offset the start offset for paging * @param int $limit the number of locations returned * @param string[]|null $prioritizedLanguages Used as prioritized language code on translated properties of returned object. - * - * @return \Ibexa\Contracts\Core\Repository\Values\Content\LocationList */ public function loadLocationChildren(Location $location, int $offset = 0, int $limit = 25, ?array $prioritizedLanguages = null): LocationList;