From: Aaron Schulz Date: Sat, 24 Sep 2016 00:51:20 +0000 (-0700) Subject: Remove getSearchEngine() from DatabaseBase X-Git-Tag: 1.31.0-rc.0~5309^2 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=b319ffdfb81ebc482bba8424b08c794c9c2f9c58;p=lhc%2Fweb%2Fwiklou.git Remove getSearchEngine() from DatabaseBase Change-Id: I1d5f43a90c50ab8cf5b6e58f290751c3aec73c4e --- diff --git a/includes/libs/rdbms/database/DatabaseBase.php b/includes/libs/rdbms/database/DatabaseBase.php index e008705048..71e5f93357 100644 --- a/includes/libs/rdbms/database/DatabaseBase.php +++ b/includes/libs/rdbms/database/DatabaseBase.php @@ -29,14 +29,5 @@ * @ingroup Database */ abstract class DatabaseBase extends Database { - /** - * Get search engine class. All subclasses of this need to implement this - * if they wish to use searching. - * - * @return string - * @deprecated since 1.27; use SearchEngineFactory::getSearchEngineClass() - */ - public function getSearchEngine() { - return 'SearchEngineDummy'; - } + // Backwards-compatibility alias for type-hints }