BeatSwitch\Lock\Integrations\Laravel\LockServiceProvider::boot PHP Method

boot() public method

Bootstrap the service provider
public boot ( )
    public function boot()
    {
        // Package configuration
        $this->publishes([__DIR__ . '/config/config.php' => config_path('lock.php')], 'config');
        // Package migrations
        $this->publishes([__DIR__ . '/migrations/' => base_path('/database/migrations')], 'migrations');
        $this->bootstrapPermissions();
    }