summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2018-10-31 15:49:53 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2018-10-31 19:43:18 +0100
commit0c8c6ad5c7f8c213da776c970a81be060a6b5def (patch)
tree37b85f223196a9fa9dc6cb42d1767b5ddc1d90b5
parentfeeb62a496b1aecb3d86975e5df317c30aab3533 (diff)
downloadnextcloud-server-0c8c6ad5c7f8c213da776c970a81be060a6b5def.tar.gz
nextcloud-server-0c8c6ad5c7f8c213da776c970a81be060a6b5def.zip
missing type
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
-rw-r--r--lib/public/FullTextSearch/Service/IIndexService.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/FullTextSearch/Service/IIndexService.php b/lib/public/FullTextSearch/Service/IIndexService.php
index 376c07a4490..c5d1b9b3bcf 100644
--- a/lib/public/FullTextSearch/Service/IIndexService.php
+++ b/lib/public/FullTextSearch/Service/IIndexService.php
@@ -65,11 +65,11 @@ interface IIndexService {
* @since 15.0.0
*
* @param string $providerId
- * @param $documentId
+ * @param string $documentId
* @param int $status
* @param bool $reset
*/
- public function updateIndexStatus(string $providerId, $documentId, int $status, bool $reset = false);
+ public function updateIndexStatus(string $providerId, string $documentId, int $status, bool $reset = false);
/**