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/public/iaddressbook.php | |
parent | b653ad164b83afbc07d7a82d2e4461dace28ba6a (diff) | |
download | nextcloud-server-b5bc37d2e40aba0ab8d3e72e7f7075352839096d.tar.gz nextcloud-server-b5bc37d2e40aba0ab8d3e72e7f7075352839096d.zip |
Fix @return array PHPDocs, in /lib
Diffstat (limited to 'lib/public/iaddressbook.php')
-rw-r--r-- | lib/public/iaddressbook.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/iaddressbook.php b/lib/public/iaddressbook.php index dcfe08012e6..70309e8c57a 100644 --- a/lib/public/iaddressbook.php +++ b/lib/public/iaddressbook.php @@ -45,7 +45,7 @@ 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 - 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, $options); // // dummy results @@ -56,7 +56,7 @@ namespace OCP { /** * @param array $properties this array if key-value-pairs defines a contact - * @return array representing the contact just created or updated + * @return array an array representing the contact just created or updated */ public function createOrUpdate($properties); // // dummy |