mirror of
https://github.com/nextcloud/server.git
synced 2026-06-13 10:40:40 -04:00
Merge pull request #16422 from nextcloud/feature/noid/complement-search-string-inrequest-
set and complete the searched string
This commit is contained in:
commit
79eb5de0be
1 changed files with 22 additions and 0 deletions
|
|
@ -91,6 +91,28 @@ interface ISearchRequest {
|
|||
*/
|
||||
public function getSearch(): string;
|
||||
|
||||
/**
|
||||
* Set the searched string.
|
||||
*
|
||||
* @param string $search
|
||||
*
|
||||
* @since 17.0.0
|
||||
*
|
||||
* @return ISearchRequest
|
||||
*/
|
||||
public function setSearch(string $search): ISearchRequest;
|
||||
|
||||
/**
|
||||
* Extends the searched string.
|
||||
*
|
||||
* @since 17.0.0
|
||||
*
|
||||
* @param string $search
|
||||
*
|
||||
* @return ISearchRequest
|
||||
*/
|
||||
public function addSearch(string $search): ISearchRequest;
|
||||
|
||||
|
||||
/**
|
||||
* Get the value of an option (as string).
|
||||
|
|
|
|||
Loading…
Reference in a new issue