[ticket/11495] Some more doc changes

PHPBB3-11495
This commit is contained in:
Joas Schilling 2013-04-30 18:39:22 +02:00
parent d1d59dc5cc
commit 6a7378ecbd
2 changed files with 4 additions and 4 deletions

View file

@ -90,7 +90,7 @@ interface phpbb_tree_interface
/** /**
* Get all items that are either ancestors or descendants of the item * 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 $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 * @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) * @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 * 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 $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 * @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) * @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 * 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 $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 * @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) * @return array Array of items (containing all columns from the item table)

View file

@ -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 * 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 string $condition Query string restricting the item list
* @param bool $order_asc Order the items ascending by their left_id * @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 * @param bool $include_item Should the item matching the given item id be included in the list as well