Krucas\LaravelUserEmailVerification\UserEmailVerificationServiceProvider::boot PHP Method

boot() public method

Boot service provider.
public boot ( ) : void
return void
    public function boot()
    {
        $this->loadTranslationsFrom(__DIR__ . '/../../translations', 'verification');
        $this->loadViewsFrom(__DIR__ . '/../../views', 'verification');
        $this->publishes([__DIR__ . '/../../config/verification.php' => config_path('verification.php')], 'config');
        $this->publishes([__DIR__ . '/../../translations' => resource_path('lang/vendor/verification')], 'translations');
        $this->publishes([__DIR__ . '/../../views' => resource_path('views/vendor/verification')], 'views');
    }
UserEmailVerificationServiceProvider