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
This commit is contained in:
Ammar Abdulhamid 2020-12-05 06:18:20 +01:00
parent 59122c429b
commit e3c542998b

View file

@ -31,8 +31,7 @@ use Wikimedia\Rdbms\IMaintainableDatabase;
require_once __DIR__ . '/../../maintenance/Maintenance.php'; require_once __DIR__ . '/../../maintenance/Maintenance.php';
/** /**
* Class for handling database updates. Roughly based off of updaters.inc, with * Class for handling database updates.
* a few improvements :)
* *
* @stable to extend * @stable to extend
* @ingroup Installer * @ingroup Installer
@ -626,8 +625,7 @@ abstract class DatabaseUpdater {
/** /**
* Get an array of updates to perform on the database. Should return a * 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, * multi-dimensional array. The main key is the MediaWiki version (1.12,
* 1.13...) with the values being arrays of updates, identical to how * 1.13...) with the values being arrays of updates.
* updaters.inc did it (for now)
* *
* @return array[] * @return array[]
*/ */
@ -708,8 +706,7 @@ abstract class DatabaseUpdater {
} }
/** /**
* Get the full path of a patch file. Originally based on archive() * Get the full path of a patch file. Keep in mind this always returns a patch, as
* from updaters.inc. Keep in mind this always returns a patch, as
* it fails back to MySQL if no DB-specific patch can be found * it fails back to MySQL if no DB-specific patch can be found
* *
* @param IDatabase $db * @param IDatabase $db