Krucas\LaravelUserEmailVerification\Console\ClearVerificationTokensCommand::fire PHP Method

fire() public method

Execute the console command.
public fire ( ) : void
return void
    public function fire()
    {
        $this->laravel['auth.verification']->broker($this->argument('name'))->getRepository()->deleteExpired();
        $this->info('Expired verification tokens cleared!');
    }
ClearVerificationTokensCommand