Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | /** |
| 3 | * BackupDumper that postprocesses XML dumps from dumpBackup.php to add page text |
| 4 | * |
| 5 | * Copyright (C) 2005 Brooke Vibber <bvibber@wikimedia.org> |
| 6 | * https://www.mediawiki.org/ |
| 7 | * |
| 8 | * @license GPL-2.0-or-later |
| 9 | * @file |
| 10 | * @ingroup Maintenance |
| 11 | */ |
| 12 | |
| 13 | use MediaWiki\Maintenance\TextPassDumper; |
| 14 | |
| 15 | // @codeCoverageIgnoreStart |
| 16 | require_once __DIR__ . '/includes/TextPassDumper.php'; |
| 17 | |
| 18 | $maintClass = TextPassDumper::class; |
| 19 | require_once RUN_MAINTENANCE_IF_MAIN; |
| 20 | // @codeCoverageIgnoreEnd |