addDescription( 'Purge expired user IP address information stored by LoginNotify' ); } public function execute() { $loginNotify = LoginNotify::getInstance(); $minId = $loginNotify->getMinExpiredId(); for ( ; $minId !== null; $this->waitForReplication() ) { $minId = $loginNotify->purgeSeen( $minId ); } } } $maintClass = PurgeSeen::class; require_once RUN_MAINTENANCE_IF_MAIN;