-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make addressbook search limit and offset optional
- Loading branch information
1 parent
d8b01b8
commit 6da3ca5
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,7 +60,7 @@ public function getDisplayName(); | |
* @return array an array of contacts which are arrays of key-value-pairs | ||
* @since 5.0.0 | ||
*/ | ||
public function search($pattern, $searchProperties, $options, $limit, $offset); | ||
public function search($pattern, $searchProperties, $options, $limit = null, $offset = null); | ||
// // dummy results | ||
// return array( | ||
// array('id' => 0, 'FN' => 'Thomas Müller', 'EMAIL' => '[email protected]', 'GEO' => '37.386013;-122.082932'), | ||
|