diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2014-06-16 01:12:03 +0200 | 
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2014-06-16 01:12:03 +0200 | 
| commit | f27be59cf1bc97ac9da6bc7f963b1e0c44ee248b (patch) | |
| tree | 20e82f52d2e6ffb5b5f3717849e823e56a1f5468 /phpBB/phpbb/tree/nestedset.php | |
| parent | ad11925c7730e4f3c6b1cffe46c6ba531f04f4d9 (diff) | |
| parent | f4ef1ab6bd4b18ea002ec1d5bf733d4f6b357e57 (diff) | |
| download | forums-f27be59cf1bc97ac9da6bc7f963b1e0c44ee248b.tar forums-f27be59cf1bc97ac9da6bc7f963b1e0c44ee248b.tar.gz forums-f27be59cf1bc97ac9da6bc7f963b1e0c44ee248b.tar.bz2 forums-f27be59cf1bc97ac9da6bc7f963b1e0c44ee248b.tar.xz forums-f27be59cf1bc97ac9da6bc7f963b1e0c44ee248b.zip | |
Merge pull request #2600 from Nicofuma/ticket/12715
[ticket/12715] Fix mistakes in the doc blocks
* Nicofuma/ticket/12715: (30 commits)
  [ticket/12715] Add missing new line in the notification manager
  [ticket/12715] Cleanup comments in \phpbb\symfony_request
  [ticket/12715] Cleanup comments in \phpbb\permissions
  [ticket/12715] Cleanup comments in \phpbb\path_helper
  [ticket/12715] Cleanup comments in \phpbb\pagination
  [ticket/12715] Cleanup comments in \phpbb\datetime
  [ticket/12715] Cleanup comments in \phpbb\content_visibility
  [ticket/12715] Cleanup comments in \phpbb\tree\*
  [ticket/12715] Cleanup comments in \phpbb\template\*
  [ticket/12715] Cleanup comments in \phpbb\plupload\*
  [ticket/12715] Cleanup comments in \phpbb\profilefields\*
  [ticket/12715] Cleanup comments in \phpbb\passwords\*
  [ticket/12715] Cleanup comments in \phpbb\notification\*
  [ticket/12715] Cleanup comments in \phpbb\mimetype\*
  [ticket/12715] Cleanup comments in \phpbb\message\*
  [ticket/12715] Cleanup comments in \phpbb\log\*
  [ticket/12715] Cleanup comments in \phpbb\lock\*
  [ticket/12715] Cleanup comments in \phpbb\groupposition\*
  [ticket/12715] Cleanup comments in \phpbb\feed\*
  [ticket/12715] Cleanup comments in \phpbb\extension\*
  ...
Diffstat (limited to 'phpBB/phpbb/tree/nestedset.php')
| -rw-r--r-- | phpBB/phpbb/tree/nestedset.php | 23 | 
1 files changed, 12 insertions, 11 deletions
| diff --git a/phpBB/phpbb/tree/nestedset.php b/phpBB/phpbb/tree/nestedset.php index 7a26c81b0e..57d109652e 100644 --- a/phpBB/phpbb/tree/nestedset.php +++ b/phpBB/phpbb/tree/nestedset.php @@ -103,7 +103,7 @@ abstract class nestedset implements \phpbb\tree\tree_interface  	*  	* @return bool	True if the lock was acquired, false if it has been acquired previously  	* -	* @throws RuntimeException If the lock could not be acquired +	* @throws \RuntimeException If the lock could not be acquired  	*/  	protected function acquire_lock()  	{ @@ -121,7 +121,7 @@ abstract class nestedset implements \phpbb\tree\tree_interface  	}  	/** -	* @inheritdoc +	* {@inheritdoc}  	*/  	public function insert(array $additional_data)  	{ @@ -176,6 +176,7 @@ abstract class nestedset implements \phpbb\tree\tree_interface  	*  	* @param int	$item_id	The item to be deleted  	* @return array		Item ids that have been removed +	* @throws \OutOfBoundsException  	*/  	protected function remove_item_from_nestedset($item_id)  	{ @@ -199,7 +200,7 @@ abstract class nestedset implements \phpbb\tree\tree_interface  	}  	/** -	* @inheritdoc +	* {@inheritdoc}  	*/  	public function delete($item_id)  	{ @@ -214,7 +215,7 @@ abstract class nestedset implements \phpbb\tree\tree_interface  	}  	/** -	* @inheritdoc +	* {@inheritdoc}  	*/  	public function move($item_id, $delta)  	{ @@ -332,7 +333,7 @@ abstract class nestedset implements \phpbb\tree\tree_interface  	}  	/** -	* @inheritdoc +	* {@inheritdoc}  	*/  	public function move_down($item_id)  	{ @@ -340,7 +341,7 @@ abstract class nestedset implements \phpbb\tree\tree_interface  	}  	/** -	* @inheritdoc +	* {@inheritdoc}  	*/  	public function move_up($item_id)  	{ @@ -348,7 +349,7 @@ abstract class nestedset implements \phpbb\tree\tree_interface  	}  	/** -	* @inheritdoc +	* {@inheritdoc}  	*/  	public function move_children($current_parent_id, $new_parent_id)  	{ @@ -454,7 +455,7 @@ abstract class nestedset implements \phpbb\tree\tree_interface  	}  	/** -	* @inheritdoc +	* {@inheritdoc}  	*/  	public function change_parent($item_id, $new_parent_id)  	{ @@ -553,7 +554,7 @@ abstract class nestedset implements \phpbb\tree\tree_interface  	}  	/** -	* @inheritdoc +	* {@inheritdoc}  	*/  	public function get_path_and_subtree_data($item_id, $order_asc = true, $include_item = true)  	{ @@ -564,7 +565,7 @@ abstract class nestedset implements \phpbb\tree\tree_interface  	}  	/** -	* @inheritdoc +	* {@inheritdoc}  	*/  	public function get_path_data($item_id, $order_asc = true, $include_item = true)  	{ @@ -574,7 +575,7 @@ abstract class nestedset implements \phpbb\tree\tree_interface  	}  	/** -	* @inheritdoc +	* {@inheritdoc}  	*/  	public function get_subtree_data($item_id, $order_asc = true, $include_item = true)  	{ | 
