PHP 8.3.31
Preview: PipelineServiceProvider.php Size: 814 B
/home/getspomw/royalsquad.us/vendor/laravel/framework/src/Illuminate/Pipeline/PipelineServiceProvider.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',
        ];
    }
}

Directory Contents

Dirs: 0 × Files: 5

Name Size Perms Modified Actions
824 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
2.06 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
1.05 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
7.38 KB lrw-rw-rw- 2025-09-17 06:52:59
Edit Download
814 B lrw-rw-rw- 2025-09-17 06:52:59
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).