Krucas\LaravelUserEmailVerification\UserEmailVerificationServiceProvider::registerCommands PHP 메소드

registerCommands() 보호된 메소드

Register the related console commands.
protected registerCommands ( ) : void
리턴 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