Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2018-08-18 13:31:00 +0300
committerMaxence Lange <maxence@artificial-owl.com>2018-08-18 13:31:00 +0300
commit520896400e9158230a9094030fd49c2a422d0781 (patch)
treeec606eb4fc831cdefe1feb887b150b6809a2ebfc /lib
parentc541693b0f400251d613e6ba8c7ca26899e93e92 (diff)
documents are not indexed by chunks anymore
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/IFullTextSearchPlatform.php22
1 files changed, 12 insertions, 10 deletions
diff --git a/lib/IFullTextSearchPlatform.php b/lib/IFullTextSearchPlatform.php
index 9df0543..5147be9 100644
--- a/lib/IFullTextSearchPlatform.php
+++ b/lib/IFullTextSearchPlatform.php
@@ -102,16 +102,18 @@ interface IFullTextSearchPlatform {
public function deleteIndexes($indexes);
- /**
- * $command can be null. instanceof ExtendedBase if the method is called from CLI.
- * Use it to echo whatever and intercept ^C
- *
- * @param IFullTextSearchProvider $provider
- * @param IndexDocument[] $documents
- *
- * @return Index[]
- */
- public function indexDocuments(IFullTextSearchProvider $provider, $documents);
+ // DEPRECATED !
+// /**
+// * $command can be null. instanceof ExtendedBase if the method is called from CLI.
+// * Use it to echo whatever and intercept ^C
+// *
+// * @deprecated
+// * @param IFullTextSearchProvider $provider
+// * @param IndexDocument[] $documents
+// *
+// * @return Index[]
+// */
+// public function indexDocuments(IFullTextSearchProvider $provider, $documents);
/**