RevisionTest: Make @covers tags absolute (re-apply)
[lhc/web/wiklou.git] / maintenance / cleanupRemovedModules.php
index dbaf643..a6f10c6 100644 (file)
@@ -57,7 +57,7 @@ class CleanupRemovedModules extends Maintenance {
 
                $modDeps = $dbw->tableName( 'module_deps' );
                $i = 1;
-               foreach ( array_chunk( $rows, $this->mBatchSize ) as $chunk ) {
+               foreach ( array_chunk( $rows, $this->getBatchSize() ) as $chunk ) {
                        // WHERE ( mod=A AND skin=A ) OR ( mod=A AND skin=B) ..
                        $conds = array_map( function ( stdClass $row ) use ( $dbw ) {
                                return $dbw->makeList( (array)$row, IDatabase::LIST_AND );