mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
set and complete the searched string
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
This commit is contained in:
parent
f877176fed
commit
8bafd67c1f
1 changed files with 18 additions and 0 deletions
|
|
@ -91,6 +91,24 @@ interface ISearchRequest {
|
|||
*/
|
||||
public function getSearch(): string;
|
||||
|
||||
/**
|
||||
* Set the searched string.
|
||||
*
|
||||
* @since 17.0.0
|
||||
*
|
||||
* @return ISearchRequest
|
||||
*/
|
||||
public function setSearch(string $search): ISearchRequest;
|
||||
|
||||
/**
|
||||
* Complete the searched string.
|
||||
*
|
||||
* @since 17.0.0
|
||||
*
|
||||
* @return ISearchRequest
|
||||
*/
|
||||
public function addSearch(string $search): ISearchRequest;
|
||||
|
||||
|
||||
/**
|
||||
* Get the value of an option (as string).
|
||||
|
|
|
|||
Loading…
Reference in a new issue