diff options
author | Simon L <szaimen@e.mail.de> | 2022-02-04 00:18:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-04 00:18:17 +0100 |
commit | 68b2463107774bed28ee9e77b44e7395d49dacee (patch) | |
tree | 4af9242dddfbcb3edfd62f930397150dac57e088 /lib | |
parent | 772b3d38f33d95dc185bcd0d04cb6e5e78ad0aa9 (diff) | |
parent | 144e83520b9fc4b603f223ec5b69a9f5df1e607c (diff) | |
download | nextcloud-server-68b2463107774bed28ee9e77b44e7395d49dacee.tar.gz nextcloud-server-68b2463107774bed28ee9e77b44e7395d49dacee.zip |
Merge pull request #30990 from nextcloud/enh/noid/fulltextsearch-collection
FullTextSearch/IIndex: +getCollection(): string;
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/FullTextSearch/Model/IIndex.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/public/FullTextSearch/Model/IIndex.php b/lib/public/FullTextSearch/Model/IIndex.php index 1a8b5d875ba..dad10c934de 100644 --- a/lib/public/FullTextSearch/Model/IIndex.php +++ b/lib/public/FullTextSearch/Model/IIndex.php @@ -85,6 +85,17 @@ interface IIndex { /** + * Get the collection of the index. + * If empty (''), means collection is the default one used by the internal framework + * + * @since 24.0.0 + * + * @return string + */ + public function getCollection(): string; + + + /** * Set the source of the original document. * * @since 15.0.0 |