PHP Class Barryvdh\Queue\AsyncServiceProvider

Inheritance: extends Illuminate\Support\ServiceProvider
Datei anzeigen Open project: barryvdh/laravel-async-queue

Protected Properties

Property Type Description
$defer boolean Indicates if loading of the provider is deferred.

Public Methods

Method Description
boot ( ) : void Add the connector to the queue drivers.
provides ( ) : array Get the services provided by the provider.
register ( ) : void Register the service provider.

Protected Methods

Method Description
registerAsyncCommand ( ) : void Register the queue listener console command.
registerAsyncConnector ( Illuminate\Queue\QueueManager $manager ) : void Register the Async queue connector.

Method Details

boot() public method

Add the connector to the queue drivers.
public boot ( ) : void
return void

provides() public method

Get the services provided by the provider.
public provides ( ) : array
return array

register() public method

Register the service provider.
public register ( ) : void
return void

registerAsyncCommand() protected method

Register the queue listener console command.
protected registerAsyncCommand ( ) : void
return void

registerAsyncConnector() protected method

Register the Async queue connector.
protected registerAsyncConnector ( Illuminate\Queue\QueueManager $manager ) : void
$manager Illuminate\Queue\QueueManager
return void

Property Details

$defer protected_oe property

Indicates if loading of the provider is deferred.
protected bool $defer
return boolean