From: Fabii547 Date: Tue, 5 Jan 2016 08:28:06 +0000 (+0100) Subject: Removed unused parameter in SearchIndexManager::getTableName() X-Git-Tag: 3.0.0_Beta_1~1284^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4a6a3451477f619c022508507ad8f6a2f8541451;p=GitHub%2FWoltLab%2FWCF.git Removed unused parameter in SearchIndexManager::getTableName() --- diff --git a/wcfsetup/install/files/lib/system/search/SearchIndexManager.class.php b/wcfsetup/install/files/lib/system/search/SearchIndexManager.class.php index 6cebe71e3a..68cb10b63d 100644 --- a/wcfsetup/install/files/lib/system/search/SearchIndexManager.class.php +++ b/wcfsetup/install/files/lib/system/search/SearchIndexManager.class.php @@ -156,11 +156,10 @@ class SearchIndexManager extends SingletonFactory implements ISearchIndexManager /** * Returns the database table name for the object type's search index. * - * @param mixed $objectType - * @param \wcf\data\package\Package $package + * @param mixed $objectType * @return string */ - public static function getTableName($objectType, $package = null) { + public static function getTableName($objectType) { if (is_string($objectType)) { $objectType = self::getInstance()->getObjectType($objectType); }