aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/tree
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/tree')
-rw-r--r--phpBB/includes/tree/interface.php6
-rw-r--r--phpBB/includes/tree/nestedset.php2
2 files changed, 4 insertions, 4 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)
diff --git a/phpBB/includes/tree/nestedset.php b/phpBB/includes/tree/nestedset.php
index 2a639d8907..2f17ebab02 100644
--- a/phpBB/includes/tree/nestedset.php
+++ b/phpBB/includes/tree/nestedset.php
@@ -577,7 +577,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
/**
* Get items that are related to the given item by the condition
*
- * @param int $item_id The item id to get the node set from
+ * @param int $item_id Id of the item to retrieve the node set from
* @param string $condition Query string restricting the item list
* @param bool $order_asc Order the items ascending by their left_id
* @param bool $include_item Should the item matching the given item id be included in the list as well