removing default value in param $chunk

Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
This commit is contained in:
Maxence Lange 2019-01-29 17:13:29 -01:00
parent adde9a685c
commit b8e324177e
1 changed files with 2 additions and 2 deletions

View File

@ -173,7 +173,7 @@ interface IFullTextSearchProvider {
* called only once (per user). * called only once (per user).
* *
* @since 16.0.0 * @since 16.0.0
* *
* @param string $userId * @param string $userId
* *
* @return array * @return array
@ -203,7 +203,7 @@ interface IFullTextSearchProvider {
* *
* @return IndexDocument[] * @return IndexDocument[]
*/ */
public function generateIndexableDocuments(string $userId, string $chunk = ''): array; public function generateIndexableDocuments(string $userId, string $chunk): array;
/** /**