[feature/extension-manager] Add docblocks to new search backend methods

PHPBB3-10323
This commit is contained in:
Nils Adermann 2011-11-18 14:46:30 +01:00
parent 81ac369808
commit 121cab1c29
2 changed files with 12 additions and 2 deletions

View file

@ -52,7 +52,12 @@ class phpbb_search_fulltext_mysql extends phpbb_search_base
$error = false; $error = false;
} }
function get_name() /**
* Returns the name of this search backend to be displayed to administrators
*
* @return string Name
*/
public function get_name()
{ {
return 'MySQL Fulltext'; return 'MySQL Fulltext';
} }

View file

@ -54,7 +54,12 @@ class phpbb_search_fulltext_native extends phpbb_search_base
$error = false; $error = false;
} }
function get_name() /**
* Returns the name of this search backend to be displayed to administrators
*
* @return string Name
*/
public function get_name()
{ {
return 'phpBB Native Fulltext'; return 'phpBB Native Fulltext';
} }