diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-04-30 18:39:22 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-04-30 18:39:22 +0200 |
commit | 6a7378ecbdeea1ad356cbde8a085aa7510c61788 (patch) | |
tree | 6bc30597997be8bfe5d0fe02273e672e2f0e7ebe /phpBB/includes/tree/interface.php | |
parent | d1d59dc5cc3ca779c5e7a971659c8aca5e28215d (diff) | |
download | forums-6a7378ecbdeea1ad356cbde8a085aa7510c61788.tar forums-6a7378ecbdeea1ad356cbde8a085aa7510c61788.tar.gz forums-6a7378ecbdeea1ad356cbde8a085aa7510c61788.tar.bz2 forums-6a7378ecbdeea1ad356cbde8a085aa7510c61788.tar.xz forums-6a7378ecbdeea1ad356cbde8a085aa7510c61788.zip |
[ticket/11495] Some more doc changes
PHPBB3-11495
Diffstat (limited to 'phpBB/includes/tree/interface.php')
-rw-r--r-- | phpBB/includes/tree/interface.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/tree/interface.php b/phpBB/includes/tree/interface.php index 2eb40b066c..cc8aab2115 100644 --- a/phpBB/includes/tree/interface.php +++ b/phpBB/includes/tree/interface.php @@ -90,7 +90,7 @@ interface phpbb_tree_interface /** * Get all items that are either ancestors or descendants of the item * - * @param int $item_id The item id the ancestors/descendants should be retrieved from + * @param int $item_id Id of the item to retrieve the ancestors/descendants from * @param bool $order_asc Order the items ascendingly (most outer ancestor first) * @param bool $include_item Should the item matching the given item id be included in the list as well * @return array Array of items (containing all columns from the item table) @@ -101,7 +101,7 @@ interface phpbb_tree_interface /** * Get all of the item's ancestors * - * @param int $item_id The item id the ancestors should be retrieved from + * @param int $item_id Id of the item to retrieve the ancestors from * @param bool $order_asc Order the items ascendingly (most outer ancestor first) * @param bool $include_item Should the item matching the given item id be included in the list as well * @return array Array of items (containing all columns from the item table) @@ -112,7 +112,7 @@ interface phpbb_tree_interface /** * Get all of the item's descendants * - * @param int $item_id The item id the descendants should be retrieved from + * @param int $item_id Id of the item to retrieve the descendants from * @param bool $order_asc Order the items ascendingly * @param bool $include_item Should the item matching the given item id be included in the list as well * @return array Array of items (containing all columns from the item table) |