Krucas\LaravelUserEmailVerification\UserEmailVerificationServiceProvider::registerCommands PHP Method

registerCommands() protected method

Register the related console commands.
protected registerCommands ( ) : void
return void
    protected function registerCommands()
    {
        $this->app->singleton('command.verification.make', function ($app) {
            return new MakeVerificationCommand($app['composer']);
        });
        $this->app->singleton('command.verification.clear', function ($app) {
            return new ClearVerificationTokensCommand();
        });
        $this->commands('command.verification.make');
        $this->commands('command.verification.clear');
    }
UserEmailVerificationServiceProvider