[ Root System Explorer ]
Location:
Root
/
var
/
www
/
html
/
acma.in
/
new-cp-admin
/
vendor
/
illuminate
/
pipeline
+ Folder
+ File
Upload
Editing: PipelineServiceProvider.php
<?php namespace Illuminate\Pipeline; use Illuminate\Support\ServiceProvider; use Illuminate\Contracts\Pipeline\Hub as PipelineHubContract; class PipelineServiceProvider extends ServiceProvider { /** * Indicates if loading of the provider is deferred. * * @var bool */ protected $defer = true; /** * 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, ]; } }
SAVE CHANGES
[ CANCEL ]
Name
Type
Actions
.. (Parent Directory)
📄 Hub.php
FILE
Ren
[EDIT]
DEL
📄 Pipeline.php
FILE
Ren
[EDIT]
DEL
📄 PipelineServiceProvider.php
FILE
Ren
[EDIT]
DEL
📄 composer.json
FILE
Ren
[EDIT]
DEL