aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/tree/interface.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-04-30 10:37:59 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-04-30 10:37:59 +0200
commit4810c61fd7b912ea2914b99f7db502b6f503068f (patch)
tree4075eecee54c7b637b9977ad3c6aad876381b878 /phpBB/includes/tree/interface.php
parent8a4260703fa76bb92f144b527b3d55289568db74 (diff)
downloadforums-4810c61fd7b912ea2914b99f7db502b6f503068f.tar
forums-4810c61fd7b912ea2914b99f7db502b6f503068f.tar.gz
forums-4810c61fd7b912ea2914b99f7db502b6f503068f.tar.bz2
forums-4810c61fd7b912ea2914b99f7db502b6f503068f.tar.xz
forums-4810c61fd7b912ea2914b99f7db502b6f503068f.zip
[ticket/11495] Remove get_parent_data from interface and rename it
The method is implementation specific and has no use, apart from cache, that is not covered by get_path_data(). PHPBB3-11495
Diffstat (limited to 'phpBB/includes/tree/interface.php')
-rw-r--r--phpBB/includes/tree/interface.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/phpBB/includes/tree/interface.php b/phpBB/includes/tree/interface.php
index 1b462768a0..bd8181beb2 100644
--- a/phpBB/includes/tree/interface.php
+++ b/phpBB/includes/tree/interface.php
@@ -119,13 +119,4 @@ interface phpbb_tree_interface
* ID => Item data
*/
public function get_subtree_data($item_id, $order_desc, $include_item);
-
- /**
- * Get base information of parent items
- *
- * @param array $item The item to get the branch from
- * @return array Array of items (containing basic columns from the item table)
- * ID => Item data
- */
- public function get_parent_data(array $item);
}