Samrap\Kickstart\KickstartServiceProvider::boot PHP Method

boot() public method

Perform post-registration booting of services.
public boot ( ) : void
return void
    public function boot()
    {
        // Publish app files.
        $this->publishes([__DIR__ . '/../../publish/app/' => app_path()], 'app');
        // Publish view and asset files.
        $this->publishes([__DIR__ . '/../../publish/resources/' => resource_path()], 'resources');
        // Publish NPM files. Note that for these to apply, the --force flag
        // must be specified.
        $this->publishes([__DIR__ . '/../../publish/gulpfile.js' => base_path('gulpfile.js'), __DIR__ . '/../../publish/package.json' => base_path('package.json')], 'npm');
    }
KickstartServiceProvider