fix phpdoc
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
This commit is contained in:
parent
8bafd67c1f
commit
462c293111
1 changed files with 5 additions and 1 deletions
|
@ -94,6 +94,8 @@ interface ISearchRequest {
|
|||
/**
|
||||
* Set the searched string.
|
||||
*
|
||||
* @param string $search
|
||||
*
|
||||
* @since 17.0.0
|
||||
*
|
||||
* @return ISearchRequest
|
||||
|
@ -101,10 +103,12 @@ interface ISearchRequest {
|
|||
public function setSearch(string $search): ISearchRequest;
|
||||
|
||||
/**
|
||||
* Complete the searched string.
|
||||
* Extends the searched string.
|
||||
*
|
||||
* @since 17.0.0
|
||||
*
|
||||
* @param string $search
|
||||
*
|
||||
* @return ISearchRequest
|
||||
*/
|
||||
public function addSearch(string $search): ISearchRequest;
|
||||
|
|
Loading…
Reference in a new issue