1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/10411] Add return value to move functions

PHPBB3-10411
This commit is contained in:
Joas Schilling
2013-02-25 20:58:12 +01:00
parent b0dc5925b9
commit 1d7b082a6f
5 changed files with 413 additions and 253 deletions

View File

@@ -59,7 +59,7 @@ interface phpbb_groupposition_interface
* Moves a group up by group_id
*
* @param int $group_id group_id of the group to be moved
* @return null
* @return bool True if the group was moved successfully
*/
public function move_up($group_id);
@@ -67,7 +67,7 @@ interface phpbb_groupposition_interface
* Moves a group down by group_id
*
* @param int $group_id group_id of the group to be moved
* @return null
* @return bool True if the group was moved successfully
*/
public function move_down($group_id);
@@ -78,7 +78,7 @@ interface phpbb_groupposition_interface
* @param int $delta number of steps:
* - positive = move up
* - negative = move down
* @return null
* @return bool True if the group was moved successfully
*/
public function move($group_id, $delta);
}