v1.0.0 initial release
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
<?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',
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user