PHP Class Collective\Remote\RemoteServiceProvider

Inheritance: extends Illuminate\Support\ServiceProvider
Show file Open project: laravelcollective/remote

Protected Properties

Property Type Description
$commands array The commands to be registered.
$defer boolean Indicates if loading of the provider is deferred.

Public Methods

Method Description
boot ( ) Boot the Service Provider.
provides ( ) : array Get the services provided by the provider.
register ( ) : void Register the service provider.

Protected Methods

Method Description
isLumen ( ) : boolean Check if package is running under Lumen app.
registerCommands ( ) : void Register the commands.
registerTailCommand ( ) : void Register the command.

Method Details

boot() public method

Boot the Service Provider.
public boot ( )

isLumen() protected method

Check if package is running under Lumen app.
protected isLumen ( ) : boolean
return boolean

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

registerCommands() protected method

Register the commands.
protected registerCommands ( ) : void
return void

registerTailCommand() protected method

Register the command.
protected registerTailCommand ( ) : void
return void

Property Details

$commands protected property

The commands to be registered.
protected array $commands
return array

$defer protected property

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