* * @since 29.0.0 */ public function getByFileIds(array $fileIds): array; /** * Get filecache data by file ids from a specific storage. * * This is prefered over `getByFileIds` when the storage id is known as it * can be more efficient in some setups. * * @param int[] $fileIds * @param int $storageId * @return array * * @since 29.0.0 */ public function getByFileIdsInStorage(array $fileIds, int $storageId): array; }