Fix names of parsercache_selective_* stats
[mediawiki.git] / maintenance / purgeExpiredBlocks.php
blob7a22d4b4df11cc470bbdc5a7b668e39f94e8647d
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
18 * @file
21 // @codeCoverageIgnoreStart
22 require_once __DIR__ . '/Maintenance.php';
23 // @codeCoverageIgnoreEnd
26 * Remove expired blocks from the block and ipblocks_restrictions tables
28 * @since 1.35
29 * @ingroup Maintenance
30 * @author DannyS712
33 class PurgeExpiredBlocks extends Maintenance {
34 public function __construct() {
35 parent::__construct();
36 $this->addDescription( 'Remove expired blocks.' );
39 public function execute() {
40 $this->output( "Purging expired blocks...\n" );
42 $this->getServiceContainer()->getDatabaseBlockStore()->purgeExpiredBlocks();
44 $this->output( "Done purging expired blocks.\n" );
48 // @codeCoverageIgnoreStart
49 $maintClass = PurgeExpiredBlocks::class;
50 require_once RUN_MAINTENANCE_IF_MAIN;
51 // @codeCoverageIgnoreEnd