diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-11 18:13:51 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-05-13 19:08:14 +0100 |
commit | b5bc37d2e40aba0ab8d3e72e7f7075352839096d (patch) | |
tree | 75763a2a8452bd1ab6486fed74994cb207310ece /lib/private/contactsmanager.php | |
parent | b653ad164b83afbc07d7a82d2e4461dace28ba6a (diff) | |
download | nextcloud-server-b5bc37d2e40aba0ab8d3e72e7f7075352839096d.tar.gz nextcloud-server-b5bc37d2e40aba0ab8d3e72e7f7075352839096d.zip |
Fix @return array PHPDocs, in /lib
Diffstat (limited to 'lib/private/contactsmanager.php')
-rw-r--r-- | lib/private/contactsmanager.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/contactsmanager.php b/lib/private/contactsmanager.php index 4299d88017a..26264d4e988 100644 --- a/lib/private/contactsmanager.php +++ b/lib/private/contactsmanager.php @@ -31,7 +31,7 @@ namespace OC { * @param string $pattern which should match within the $searchProperties * @param array $searchProperties defines the properties within the query pattern should match * @param array $options - for future use. One should always have options! - * @return array of contacts which are arrays of key-value-pairs + * @return array an array of contacts which are arrays of key-value-pairs */ public function search($pattern, $searchProperties = array(), $options = array()) { $result = array(); @@ -72,7 +72,7 @@ namespace OC { * * @param array $properties this array if key-value-pairs defines a contact * @param string $address_book_key identifier of the address book in which the contact shall be created or updated - * @return array representing the contact just created or updated + * @return array an array representing the contact just created or updated */ public function createOrUpdate($properties, $address_book_key) { |