[ticket/11495] Fix doc blocks once more

PHPBB3-11495
This commit is contained in:
Joas Schilling 2013-04-26 08:42:44 +02:00
parent a9f02d1efa
commit 2afa673023
2 changed files with 6 additions and 6 deletions

View file

@ -18,7 +18,7 @@ if (!defined('IN_PHPBB'))
interface phpbb_tree_interface interface phpbb_tree_interface
{ {
/** /**
* Insert an item into the tree (also insert the rows into the table) * Inserts an item into the database table and into the tree.
* *
* @param array $item The item to be added * @param array $item The item to be added
* @return array Array with item data as set in the database * @return array Array with item data as set in the database
@ -26,9 +26,9 @@ interface phpbb_tree_interface
public function insert(array $additional_data); public function insert(array $additional_data);
/** /**
* Delete an item from the tree (also deletes the rows form the table) * Delete an item from the tree and from the database table
* *
* Also deletes all subitems from the tree * Also deletes all subitems from the tree and from the database table
* *
* @param int $item_id The item to be deleted * @param int $item_id The item to be deleted
* @return array Item ids that have been deleted * @return array Item ids that have been deleted

View file

@ -115,7 +115,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
} }
/** /**
* Add an existing item at the end of the tree * Add an item which already has a database row at the end of the tree
* *
* @param array $item The item to be added * @param array $item The item to be added
* @return bool True if the item was added * @return bool True if the item was added
@ -145,9 +145,9 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
} }
/** /**
* Remove an item from the tree WITHOUT removing the items from the table * Remove an item from the tree without deleting it from the database
* *
* Also removes all subitems from the tree * Also removes all subitems from the tree without deleting them from the database either
* *
* @param int $item_id The item to be deleted * @param int $item_id The item to be deleted
* @return array Item ids that have been removed * @return array Item ids that have been removed