Flugg\Responder\ResponderServiceProvider::boot PHP Method

boot() public method

Bootstrap the application events.
public boot ( ) : void
return void
    public function boot()
    {
        if ($this->app instanceof Laravel && $this->app->runningInConsole()) {
            $this->bootLaravelApplication();
        } elseif ($this->app instanceof Lumen) {
            $this->bootLumenApplication();
        }
        $this->mergeConfigFrom(__DIR__ . '/../resources/config/responder.php', 'responder');
        $this->commands([MakeTransformer::class]);
        include __DIR__ . '/helpers.php';
    }