missing type

Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
This commit is contained in:
Maxence Lange 2018-10-31 15:49:53 +01:00 committed by Roeland Jago Douma
parent feeb62a496
commit 0c8c6ad5c7
No known key found for this signature in database
GPG Key ID: F941078878347C0C
1 changed files with 2 additions and 2 deletions

View File

@ -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);
/**