aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/groupposition/interface.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-02-25 21:24:52 +0100
committerJoas Schilling <nickvergessen@gmx.de>2013-02-25 21:24:52 +0100
commit41eea66da975a3b4140d8f4dc3f6931ea84916db (patch)
tree0e1cd226476a7680a3520a9350487ba04b975da6 /phpBB/includes/groupposition/interface.php
parent8c6a1e50f502385c2d75920dd4914928d8311b80 (diff)
downloadforums-41eea66da975a3b4140d8f4dc3f6931ea84916db.tar
forums-41eea66da975a3b4140d8f4dc3f6931ea84916db.tar.gz
forums-41eea66da975a3b4140d8f4dc3f6931ea84916db.tar.bz2
forums-41eea66da975a3b4140d8f4dc3f6931ea84916db.tar.xz
forums-41eea66da975a3b4140d8f4dc3f6931ea84916db.zip
[ticket/10411] Add return values to add/delete function
PHPBB3-10411
Diffstat (limited to 'phpBB/includes/groupposition/interface.php')
-rw-r--r--phpBB/includes/groupposition/interface.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/groupposition/interface.php b/phpBB/includes/groupposition/interface.php
index 6fb16134e0..eacc04e1a4 100644
--- a/phpBB/includes/groupposition/interface.php
+++ b/phpBB/includes/groupposition/interface.php
@@ -42,7 +42,7 @@ interface phpbb_groupposition_interface
* Addes a group by group_id
*
* @param int $group_id group_id of the group to be added
- * @return null
+ * @return bool True if the group was added successfully
*/
public function add_group($group_id);
@@ -51,7 +51,7 @@ interface phpbb_groupposition_interface
*
* @param int $group_id group_id of the group to be deleted
* @param bool $skip_group Skip setting the value for this group, to save the query, when you need to update it anyway.
- * @return null
+ * @return bool True if the group was deleted successfully
*/
public function delete_group($group_id, $skip_group = false);