X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FformatInstallDoc.php;h=3d34be147767db500561e1ef714b8e4afd1d3935;hb=886c37e94f6c576105d8dfa03c861ab30cf4dd4b;hp=95d90c1bdb8ec3533d6d59fced8d408aa3b0ba91;hpb=58858df842f91d9ea1c9f9b6f3c767d8b204886b;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/formatInstallDoc.php b/maintenance/formatInstallDoc.php index 95d90c1bdb..3d34be1477 100644 --- a/maintenance/formatInstallDoc.php +++ b/maintenance/formatInstallDoc.php @@ -28,7 +28,7 @@ require_once __DIR__ . '/Maintenance.php'; * * @ingroup Maintenance */ -class MaintenanceFormatInstallDoc extends Maintenance { +class FormatInstallDoc extends Maintenance { function __construct() { parent::__construct(); $this->addArg( 'path', 'The file name to format', false ); @@ -72,5 +72,5 @@ class MaintenanceFormatInstallDoc extends Maintenance { } } -$maintClass = 'MaintenanceFormatInstallDoc'; +$maintClass = FormatInstallDoc::class; require_once RUN_MAINTENANCE_IF_MAIN;