/
www
/
wwwroot
/
alo88.autos
/
wp-content
/
plugins
/
wp-content-crawler
/
app
/
vendor
/
illuminate
/
pipeline
/
Upload File
HOME
<?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 ); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return [ PipelineHubContract::class, ]; } }