mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/11495] Fix "as well" typo and remove brackets
PHPBB3-11495
This commit is contained in:
parent
fe02218a2d
commit
98e6207c35
2 changed files with 4 additions and 4 deletions
|
@ -92,7 +92,7 @@ interface phpbb_tree_interface
|
||||||
*
|
*
|
||||||
* @param int $item_id The item to get the ancestors/descendants from
|
* @param int $item_id The item to get the ancestors/descendants from
|
||||||
* @param bool $order_asc Order the items ascending (most outer ancestor first)
|
* @param bool $order_asc Order the items ascending (most outer ancestor first)
|
||||||
* @param bool $include_item Should the item (matching the given item id) be included in the list aswell
|
* @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)
|
||||||
* ID => Item data
|
* ID => Item data
|
||||||
*/
|
*/
|
||||||
|
@ -103,7 +103,7 @@ interface phpbb_tree_interface
|
||||||
*
|
*
|
||||||
* @param int $item_id The item id to get the ancestors from
|
* @param int $item_id The item id to get the ancestors from
|
||||||
* @param bool $order_asc Order the items ascending (most outer ancestor first)
|
* @param bool $order_asc Order the items ascending (most outer ancestor first)
|
||||||
* @param bool $include_item Should the item (matching the given item id) be included in the list aswell
|
* @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)
|
||||||
* ID => Item data
|
* ID => Item data
|
||||||
*/
|
*/
|
||||||
|
@ -114,7 +114,7 @@ interface phpbb_tree_interface
|
||||||
*
|
*
|
||||||
* @param int $item_id The item id to get the descendants from
|
* @param int $item_id The item id to get the descendants from
|
||||||
* @param bool $order_asc Order the items ascending
|
* @param bool $order_asc Order the items ascending
|
||||||
* @param bool $include_item Should the item (matching the given item id) be included in the list aswell
|
* @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)
|
||||||
* ID => Item data
|
* ID => Item data
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -580,7 +580,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
|
||||||
* @param int $item_id The item id to get the node set from
|
* @param int $item_id The item id to get 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 aswell
|
* @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)
|
||||||
* ID => Item data
|
* ID => Item data
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue