Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.142
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
laravel /
framework /
src /
Illuminate /
Bus /
Delete
Unzip
Name
Size
Permission
Date
Action
BusServiceProvider.php
1.3
KB
-rw-r--r--
2018-11-26 09:00
Dispatcher.php
5.09
KB
-rw-r--r--
2018-11-26 09:00
Queueable.php
3.04
KB
-rw-r--r--
2018-11-26 09:00
composer.json
850
B
-rw-r--r--
2018-11-26 09:00
Save
Rename
<?php namespace Illuminate\Bus; use Illuminate\Support\ServiceProvider; use Illuminate\Contracts\Bus\Dispatcher as DispatcherContract; use Illuminate\Contracts\Queue\Factory as QueueFactoryContract; use Illuminate\Contracts\Bus\QueueingDispatcher as QueueingDispatcherContract; class BusServiceProvider 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(Dispatcher::class, function ($app) { return new Dispatcher($app, function ($connection = null) use ($app) { return $app[QueueFactoryContract::class]->connection($connection); }); }); $this->app->alias( Dispatcher::class, DispatcherContract::class ); $this->app->alias( Dispatcher::class, QueueingDispatcherContract::class ); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return [ Dispatcher::class, DispatcherContract::class, QueueingDispatcherContract::class, ]; } }