mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[feature/extension-manager] Add docblocks to new search backend methods
PHPBB3-10323
This commit is contained in:
parent
81ac369808
commit
121cab1c29
2 changed files with 12 additions and 2 deletions
|
@ -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';
|
||||||
}
|
}
|
||||||
|
|
|
@ -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';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue