1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
-
- namespace Illuminate\Pipeline;
-
- use Illuminate\Support\ServiceProvider;
- use Illuminate\Contracts\Pipeline\Hub as PipelineHubContract;
-
- class PipelineServiceProvider extends ServiceProvider
- {
- /**
- * Indicates if loading of the provider is deferred.
- *
- * @var bool
- */
- protected $defer = true;
-
- /**
- * Register the service provider.
- *
- * @return void
- */
- public function register()
- {
- $this->app->singleton(
- PipelineHubContract::class, Hub::class
- );
- }
-
- /**
- * Get the services provided by the provider.
- *
- * @return array
- */
- public function provides()
- {
- return [
- PipelineHubContract::class,
- ];
- }
- }
|