diff options
-rw-r--r-- | lib/public/FullTextSearch/Service/IIndexService.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/public/FullTextSearch/Service/IIndexService.php b/lib/public/FullTextSearch/Service/IIndexService.php index c5d1b9b3bcf..b70c7eb965f 100644 --- a/lib/public/FullTextSearch/Service/IIndexService.php +++ b/lib/public/FullTextSearch/Service/IIndexService.php @@ -45,6 +45,20 @@ interface IIndexService { /** + * Create an Index + * + * @since 15.0.1 + * + * @param string $providerId + * @param string $documentId + * @param string $userId + * @param int $status + * @return IIndex + */ + public function createIndex(string $providerId, string $documentId, string $userId, int $status): IIndex; + + + /** * Retrieve an Index from the database, based on the Id of the Provider * and the Id of the Document * |