PipelineServiceProvider.php
TLDR
The PipelineServiceProvider
class is a service provider that registers the pipeline-related services in the application container.
Classes
PipelineServiceProvider
This class extends the ServiceProvider
class and implements the DeferrableProvider
interface. It registers the pipeline-related services in the application container.
Methods
None
<?php
namespace Illuminate\Pipeline;
use Illuminate\Contracts\Pipeline\Hub as PipelineHubContract;
use Illuminate\Contracts\Support\DeferrableProvider;
use Illuminate\Support\ServiceProvider;
class PipelineServiceProvider extends ServiceProvider implements DeferrableProvider
{
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
$this->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',
];
}
}