X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FcleanupRemovedModules.php;h=38b8ba1342c895499bf7669b642d6af1468c2d8d;hb=96519cfa9746652c143d927b0089324e1f86f6c0;hp=810fad902e577dfbf4d481ae8b49807491a01c93;hpb=87af058741eac7c63eba52286031645ad5ee8925;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/cleanupRemovedModules.php b/maintenance/cleanupRemovedModules.php index 810fad902e..38b8ba1342 100644 --- a/maintenance/cleanupRemovedModules.php +++ b/maintenance/cleanupRemovedModules.php @@ -34,7 +34,8 @@ class CleanupRemovedModules extends Maintenance { public function __construct() { parent::__construct(); - $this->mDescription = 'Remove cache entries for removed ResourceLoader modules from the database'; + $this->addDescription( + 'Remove cache entries for removed ResourceLoader modules from the database' ); $this->addOption( 'batchsize', 'Delete rows in batches of this size. Default: 500', false, true ); } @@ -42,7 +43,7 @@ class CleanupRemovedModules extends Maintenance { $dbw = $this->getDB( DB_MASTER ); $rl = new ResourceLoader( ConfigFactory::getDefaultInstance()->makeConfig( 'main' ) ); $moduleNames = $rl->getModuleNames(); - $moduleList = implode( ', ', array_map( array( $dbw, 'addQuotes' ), $moduleNames ) ); + $moduleList = implode( ', ', array_map( [ $dbw, 'addQuotes' ], $moduleNames ) ); $limit = max( 1, intval( $this->getOption( 'batchsize', 500 ) ) ); $this->output( "Cleaning up module_deps table...\n" );