[ticket/12715] Cleanup comments in \phpbb\extension\*

PHPBB3-12715
This commit is contained in:
Tristan Darricau 2014-06-15 13:31:17 +02:00
parent 1033da36a3
commit 047b709c47
3 changed files with 46 additions and 43 deletions

View file

@ -148,7 +148,7 @@ class manager
* Instantiates the metadata manager for the extension with the given name * Instantiates the metadata manager for the extension with the given name
* *
* @param string $name The extension name * @param string $name The extension name
* @param string $template The template manager * @param \phpbb\template\template $template The template manager
* @return \phpbb\extension\metadata_manager Instance of the metadata manager * @return \phpbb\extension\metadata_manager Instance of the metadata manager
*/ */
public function create_extension_metadata_manager($name, \phpbb\template\template $template) public function create_extension_metadata_manager($name, \phpbb\template\template $template)

View file

@ -90,11 +90,11 @@ class metadata_manager
} }
/** /**
* Processes and gets the metadata requested * Processes and gets the metadata requested
* *
* @param string $element All for all metadata that it has and is valid, otherwise specify which section you want by its shorthand term. * @param string $element All for all metadata that it has and is valid, otherwise specify which section you want by its shorthand term.
* @return array Contains all of the requested metadata, throws an exception on failure * @return array Contains all of the requested metadata, throws an exception on failure
*/ */
public function get_metadata($element = 'all') public function get_metadata($element = 'all')
{ {
$this->set_metadata_file(); $this->set_metadata_file();
@ -136,10 +136,10 @@ class metadata_manager
} }
/** /**
* Sets the filepath of the metadata file * Sets the filepath of the metadata file
* *
* @return boolean Set to true if it exists, throws an exception on failure * @throws \phpbb\extension\exception
*/ */
private function set_metadata_file() private function set_metadata_file()
{ {
$ext_filepath = $this->extension_manager->get_extension_path($this->ext_name); $ext_filepath = $this->extension_manager->get_extension_path($this->ext_name);
@ -154,10 +154,11 @@ class metadata_manager
} }
/** /**
* Gets the contents of the composer.json file * Gets the contents of the composer.json file
* *
* @return bool True if success, throws an exception on failure * @return bool True if success, throws an exception on failure
*/ * @throws \phpbb\extension\exception
*/
private function fetch_metadata() private function fetch_metadata()
{ {
if (!file_exists($this->metadata_file)) if (!file_exists($this->metadata_file))
@ -183,10 +184,10 @@ class metadata_manager
} }
/** /**
* This array handles the cleaning of the array * This array handles the cleaning of the array
* *
* @return array Contains the cleaned metadata array * @return array Contains the cleaned metadata array
*/ */
private function clean_metadata_array() private function clean_metadata_array()
{ {
return $this->metadata; return $this->metadata;
@ -199,6 +200,7 @@ class metadata_manager
* "display" for name, type, and authors * "display" for name, type, and authors
* "name", "type") * "name", "type")
* @return Bool True if valid, throws an exception if invalid * @return Bool True if valid, throws an exception if invalid
* @throws \phpbb\extension\exception
*/ */
public function validate($name = 'display') public function validate($name = 'display')
{ {
@ -247,10 +249,11 @@ class metadata_manager
} }
/** /**
* Validates the contents of the authors field * Validates the contents of the authors field
* *
* @return boolean True when passes validation, throws exception if invalid * @return boolean True when passes validation, throws exception if invalid
*/ * @throws \phpbb\extension\exception
*/
public function validate_authors() public function validate_authors()
{ {
if (empty($this->metadata['authors'])) if (empty($this->metadata['authors']))
@ -270,10 +273,10 @@ class metadata_manager
} }
/** /**
* This array handles the verification that this extension can be enabled on this board * This array handles the verification that this extension can be enabled on this board
* *
* @return bool True if validation succeeded, False if failed * @return bool True if validation succeeded, False if failed
*/ */
public function validate_enable() public function validate_enable()
{ {
// Check for valid directory & phpBB, PHP versions // Check for valid directory & phpBB, PHP versions
@ -286,10 +289,10 @@ class metadata_manager
} }
/** /**
* Validates the most basic directory structure to ensure it follows <vendor>/<ext> convention. * Validates the most basic directory structure to ensure it follows <vendor>/<ext> convention.
* *
* @return boolean True when passes validation * @return boolean True when passes validation
*/ */
public function validate_dir() public function validate_dir()
{ {
return (substr_count($this->ext_name, '/') === 1 && $this->ext_name == $this->get_metadata('name')); return (substr_count($this->ext_name, '/') === 1 && $this->ext_name == $this->get_metadata('name'));
@ -297,10 +300,10 @@ class metadata_manager
/** /**
* Validates the contents of the phpbb requirement field * Validates the contents of the phpbb requirement field
* *
* @return boolean True when passes validation * @return boolean True when passes validation
*/ */
public function validate_require_phpbb() public function validate_require_phpbb()
{ {
if (!isset($this->metadata['require']['phpbb/phpbb'])) if (!isset($this->metadata['require']['phpbb/phpbb']))
@ -312,10 +315,10 @@ class metadata_manager
} }
/** /**
* Validates the contents of the php requirement field * Validates the contents of the php requirement field
* *
* @return boolean True when passes validation * @return boolean True when passes validation
*/ */
public function validate_require_php() public function validate_require_php()
{ {
if (!isset($this->metadata['require']['php'])) if (!isset($this->metadata['require']['php']))
@ -348,10 +351,10 @@ class metadata_manager
} }
/** /**
* Outputs the metadata into the template * Outputs the metadata into the template
* *
* @return null * @return null
*/ */
public function output_template_data() public function output_template_data()
{ {
$this->template->assign_vars(array( $this->template->assign_vars(array(

View file

@ -58,7 +58,7 @@ abstract class provider implements \IteratorAggregate
/** /**
* Retrieve an iterator over all items * Retrieve an iterator over all items
* *
* @return ArrayIterator An iterator for the array of template paths * @return \ArrayIterator An iterator for the array of template paths
*/ */
public function getIterator() public function getIterator()
{ {