summaryrefslogtreecommitdiffstats
path: root/lib/public/contacts
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2014-02-28 13:53:41 +0100
committerBart Visscher <bartv@thisnet.nl>2014-02-28 13:53:41 +0100
commit35a8dfb2fa7970098e6677f7b93b7d782d5df7f0 (patch)
tree8ede91547e256ece30635c7ab04d9bb08f63e671 /lib/public/contacts
parent89e0763d3d511d2da878db43c89300c51850b0f3 (diff)
downloadnextcloud-server-35a8dfb2fa7970098e6677f7b93b7d782d5df7f0.tar.gz
nextcloud-server-35a8dfb2fa7970098e6677f7b93b7d782d5df7f0.zip
More PHPDoc fixes, using scrutinizer patches as hints
Diffstat (limited to 'lib/public/contacts')
-rw-r--r--lib/public/contacts/imanager.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/contacts/imanager.php b/lib/public/contacts/imanager.php
index 5b9d64ecc41..005b71f298b 100644
--- a/lib/public/contacts/imanager.php
+++ b/lib/public/contacts/imanager.php
@@ -96,7 +96,7 @@ namespace OCP\Contacts {
* This function can be used to delete the contact identified by the given id
*
* @param object $id the unique identifier to a contact
- * @param $address_book_key
+ * @param string $address_book_key identifier of the address book in which the contact shall be deleted
* @return bool successful or not
*/
function delete($id, $address_book_key);
@@ -106,7 +106,7 @@ namespace OCP\Contacts {
* Otherwise the contact will be updated by replacing the entire data set.
*
* @param array $properties this array if key-value-pairs defines a contact
- * @param $address_book_key string to identify the address book in which the contact shall be created or updated
+ * @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
*/
function createOrUpdate($properties, $address_book_key);