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:
@ -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';
|
||||
}
|
||||
|
@ -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';
|
||||
}
|
||||
|
Reference in New Issue
Block a user