diff options
author | Novem Linguae <novemlinguae@gmail.com> | 2024-12-03 21:07:20 -0800 |
---|---|---|
committer | Novem Linguae <novemlinguae@gmail.com> | 2024-12-04 00:14:31 -0800 |
commit | 8c62db4f004b122a3aa80b26349b5e3ba9ff709c (patch) | |
tree | 52c14590ccd7665e2d65d07bcec78efb51e80f59 /maintenance/invalidateBotPasswords.php | |
parent | 9b414288a0fc925d9a5cba4c4e41a10e8e6f7c58 (diff) | |
download | mediawikicore-8c62db4f004b122a3aa80b26349b5e3ba9ff709c.tar.gz mediawikicore-8c62db4f004b122a3aa80b26349b5e3ba9ff709c.zip |
add `use MediaWiki\Maintenance\Maintenance` to some maintenance classes
F–P. Still need to do P–Z.
there's a couple spots where I added `use
MediaWiki\Maintenance\LoggedUpdateMaintenance;` or similar instead.
some of the existing "use" blocks were in weird spots (e.g. above the copyright
docblock, or too far down). i didn't move those because they are out of scope
for this patch.
Change-Id: I5b6a8f3eae5be85d67bccfcce31c0c2027850f45
Diffstat (limited to 'maintenance/invalidateBotPasswords.php')
-rw-r--r-- | maintenance/invalidateBotPasswords.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/maintenance/invalidateBotPasswords.php b/maintenance/invalidateBotPasswords.php index a5a18fdfde4c..ffc1fdad8973 100644 --- a/maintenance/invalidateBotPasswords.php +++ b/maintenance/invalidateBotPasswords.php @@ -21,6 +21,7 @@ * @ingroup Maintenance */ +use MediaWiki\Maintenance\Maintenance; use MediaWiki\User\BotPassword; // @codeCoverageIgnoreStart |