📋 Commit iniziale con: - ✅ Documentazione unificata in docs/ - ✅ Codice Laravel in netgescon-laravel/ - ✅ Script automazione in scripts/ - ✅ Configurazione sync rsync - ✅ Struttura organizzata e pulita 🔄 Versione: 2025.07.19-1644 🎯 Sistema pronto per Git distribuito
39 lines
814 B
PHP
39 lines
814 B
PHP
<?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',
|
|
];
|
|
}
|
|
}
|