summaryrefslogtreecommitdiff
path: root/roundcubemail/program/include/rcube_addressbook.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-09-29 16:47:05 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-09-29 16:47:05 +0000
commit932ea522ca08af44ca32cad7a00a049310a49538 (patch)
tree21c596ea2d630a2a60cfe9aa306fc19fa8cf2b2f /roundcubemail/program/include/rcube_addressbook.php
parenteefe61fb1e7a12b874b788dc771c2d3c05404b67 (diff)
- Update phpdoc (#1486958)
git-svn-id: https://svn.roundcube.net/trunk@4015 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_addressbook.php')
-rw-r--r--roundcubemail/program/include/rcube_addressbook.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/roundcubemail/program/include/rcube_addressbook.php b/roundcubemail/program/include/rcube_addressbook.php
index 3b07235de..c8e18ea85 100644
--- a/roundcubemail/program/include/rcube_addressbook.php
+++ b/roundcubemail/program/include/rcube_addressbook.php
@@ -83,14 +83,14 @@ abstract class rcube_addressbook
/**
* Count number of available contacts in database
*
- * @return object rcube_result_set Result set with values for 'count' and 'first'
+ * @return rcube_result_set Result set with values for 'count' and 'first'
*/
abstract function count();
/**
* Return the last result set
*
- * @return object rcube_result_set Current result set or NULL if nothing selected yet
+ * @return rcube_result_set Current result set or NULL if nothing selected yet
*/
abstract function get_result();
@@ -142,7 +142,7 @@ abstract class rcube_addressbook
*
* @param array Assoziative array with save data
* @param boolean True to check for duplicates first
- * @return The created record ID on success, False on error
+ * @return mixed The created record ID on success, False on error
*/
function insert($save_data, $check=false)
{
@@ -154,7 +154,7 @@ abstract class rcube_addressbook
*
* @param mixed Record identifier
* @param array Assoziative array with save data
- * @return True on success, False on error
+ * @return boolean True on success, False on error
*/
function update($id, $save_cols)
{
@@ -183,7 +183,7 @@ abstract class rcube_addressbook
* Create a contact group with the given name
*
* @param string The group name
- * @return False on error, array with record props in success
+ * @return mixed False on error, array with record props in success
*/
function create_group($name)
{