From e3c542998bcb58357c2f7b8e6d8a728bc992eadb Mon Sep 17 00:00:00 2001 From: Ammar Abdulhamid Date: Sat, 5 Dec 2020 06:18:20 +0100 Subject: [PATCH] Remove reference to deleted file There's no file 'updaters.inc' (I guess this is now 'update.php') but probably this class has substantially changed that it no longer makes sense to reference the now non-existing file. Change-Id: Ie1ffbc3a824d921f93d99881cd85f40a9aba7725 --- includes/installer/DatabaseUpdater.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/includes/installer/DatabaseUpdater.php b/includes/installer/DatabaseUpdater.php index 4c35cf576d9..702c8307263 100644 --- a/includes/installer/DatabaseUpdater.php +++ b/includes/installer/DatabaseUpdater.php @@ -31,8 +31,7 @@ use Wikimedia\Rdbms\IMaintainableDatabase; require_once __DIR__ . '/../../maintenance/Maintenance.php'; /** - * Class for handling database updates. Roughly based off of updaters.inc, with - * a few improvements :) + * Class for handling database updates. * * @stable to extend * @ingroup Installer @@ -626,8 +625,7 @@ abstract class DatabaseUpdater { /** * Get an array of updates to perform on the database. Should return a * multi-dimensional array. The main key is the MediaWiki version (1.12, - * 1.13...) with the values being arrays of updates, identical to how - * updaters.inc did it (for now) + * 1.13...) with the values being arrays of updates. * * @return array[] */ @@ -708,8 +706,7 @@ abstract class DatabaseUpdater { } /** - * Get the full path of a patch file. Originally based on archive() - * from updaters.inc. Keep in mind this always returns a patch, as + * Get the full path of a patch file. Keep in mind this always returns a patch, as * it fails back to MySQL if no DB-specific patch can be found * * @param IDatabase $db