1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-25 04:24:31 +02:00

[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;
}
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';
}

View File

@ -54,7 +54,12 @@ class phpbb_search_fulltext_native extends phpbb_search_base
$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';
}