diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2013-04-18 00:13:19 +0200 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2013-04-18 00:13:19 +0200 |
| commit | 8c3443ba996c57a0420e4559022c97c2547404c0 (patch) | |
| tree | 597286a0dc74b28881e0d87d0a0adbd50347046f /phpBB/includes/nestedset/forum.php | |
| parent | 5c379db085bab4ff0f807a9e7dfe6edb52ef25ab (diff) | |
| download | forums-8c3443ba996c57a0420e4559022c97c2547404c0.tar forums-8c3443ba996c57a0420e4559022c97c2547404c0.tar.gz forums-8c3443ba996c57a0420e4559022c97c2547404c0.tar.bz2 forums-8c3443ba996c57a0420e4559022c97c2547404c0.tar.xz forums-8c3443ba996c57a0420e4559022c97c2547404c0.zip | |
[ticket/11495] Use array directly instead of phpbb_nestedset_item_interface
PHPBB3-11495
Diffstat (limited to 'phpBB/includes/nestedset/forum.php')
| -rw-r--r-- | phpBB/includes/nestedset/forum.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/nestedset/forum.php b/phpBB/includes/nestedset/forum.php index b1df3c7e45..e00754eb68 100644 --- a/phpBB/includes/nestedset/forum.php +++ b/phpBB/includes/nestedset/forum.php @@ -67,7 +67,7 @@ class phpbb_nestedset_forum extends phpbb_nestedset_base /** * @inheritdoc */ - public function move_children(phpbb_nestedset_item_interface $current_parent, phpbb_nestedset_item_interface $new_parent) + public function move_children(array $current_parent, array $new_parent) { while (!$this->lock->acquire()) { @@ -92,7 +92,7 @@ class phpbb_nestedset_forum extends phpbb_nestedset_base /** * @inheritdoc */ - public function set_parent(phpbb_nestedset_item_interface $item, phpbb_nestedset_item_interface $new_parent) + public function set_parent(array $item, array $new_parent) { while (!$this->lock->acquire()) { |
