diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-07-23 19:57:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-23 19:57:10 +0200 |
commit | 41f97411ac8ebfb58595a0e4746a7971393a84ce (patch) | |
tree | 592acd5df428e2b5a357badd68b25303b843856f /lib | |
parent | 4a66e955305dddeda421ca04655bdefbd5ca317f (diff) | |
parent | 77c09252d5333a3665ccd5bf058666d5a26ee3b7 (diff) | |
download | nextcloud-server-41f97411ac8ebfb58595a0e4746a7971393a84ce.tar.gz nextcloud-server-41f97411ac8ebfb58595a0e4746a7971393a84ce.zip |
Merge pull request #16505 from nextcloud/enh/nitpicks-14954
Dont assign $options to $options and cleanup doc
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/IAddressBook.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/public/IAddressBook.php b/lib/public/IAddressBook.php index c666311ffb2..8d86773e771 100644 --- a/lib/public/IAddressBook.php +++ b/lib/public/IAddressBook.php @@ -62,9 +62,10 @@ namespace OCP { /** * @param string $pattern which should match within the $searchProperties * @param array $searchProperties defines the properties within the query pattern should match - * @param array $options Options to define the output format - * - types boolean (since 15.0.0) If set to true, fields that come with a TYPE property will be an array + * @param array $options Options to define the output format and search behavior + * - 'types' boolean (since 15.0.0) If set to true, fields that come with a TYPE property will be an array * example: ['id' => 5, 'FN' => 'Thomas Tanghus', 'EMAIL' => ['type => 'HOME', 'value' => 'g@h.i']] + * - 'escape_like_param' - If set to false wildcards _ and % are not escaped * @return array an array of contacts which are arrays of key-value-pairs * example result: * [ |