app->singleton( PipelineHubContract::class, Hub::class ); $this->app->bind('pipeline', fn ($app) => new Pipeline($app)); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return [ PipelineHubContract::class, 'pipeline', ]; } }