aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/group_positions.php
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2012-11-30 23:03:06 -0500
committerOleg Pudeyev <oleg@bsdpower.com>2012-11-30 23:03:06 -0500
commitec4343c7447911c7e822a03c0f57fc2bb1c4ab3d (patch)
treeca50b41e53de1e948cb2ee9859a4b69b530305ba /phpBB/includes/group_positions.php
parent3a702084e4249830a87dc0914127e00c1bb1b1dd (diff)
downloadforums-ec4343c7447911c7e822a03c0f57fc2bb1c4ab3d.tar
forums-ec4343c7447911c7e822a03c0f57fc2bb1c4ab3d.tar.gz
forums-ec4343c7447911c7e822a03c0f57fc2bb1c4ab3d.tar.bz2
forums-ec4343c7447911c7e822a03c0f57fc2bb1c4ab3d.tar.xz
forums-ec4343c7447911c7e822a03c0f57fc2bb1c4ab3d.zip
[ticket/11227] @return void -> @return null, per coding guidelines.
PHPBB3-11227
Diffstat (limited to 'phpBB/includes/group_positions.php')
-rw-r--r--phpBB/includes/group_positions.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/includes/group_positions.php b/phpBB/includes/group_positions.php
index 74de3516cb..60352ed97d 100644
--- a/phpBB/includes/group_positions.php
+++ b/phpBB/includes/group_positions.php
@@ -104,7 +104,7 @@ class phpbb_group_positions
* Addes a group by group_id
*
* @param int $group_id group_id of the group to be added
- * @return void
+ * @return null
*/
public function add_group($group_id)
{
@@ -128,7 +128,7 @@ class phpbb_group_positions
*
* @param int $group_id group_id of the group to be deleted
* @param bool $skip_group Skip setting the group to GROUP_DISABLED, to save the query, when you need to update it anyway.
- * @return void
+ * @return null
*/
public function delete_group($group_id, $skip_group = false)
{
@@ -159,7 +159,7 @@ class phpbb_group_positions
* Moves a group up by group_id
*
* @param int $group_id group_id of the group to be moved
- * @return void
+ * @return null
*/
public function move_up($group_id)
{
@@ -170,7 +170,7 @@ class phpbb_group_positions
* Moves a group down by group_id
*
* @param int $group_id group_id of the group to be moved
- * @return void
+ * @return null
*/
public function move_down($group_id)
{
@@ -184,7 +184,7 @@ class phpbb_group_positions
* @param int $delta number of steps:
* - positive = move up
* - negative = move down
- * @return void
+ * @return null
*/
public function move($group_id, $delta)
{