class RemoteServiceProvider extends ServiceProvider (View source)

Methods

void
__construct( Application $app)

Create a new service provider instance.

void
boot()

Bootstrap the application events.

void
register()

Register the service provider.

void
package( string $package, string $namespace = null, string $path = null)

Register the package's component namespaces.

string
guessPackagePath()

Guess the package path for the provider.

void
commands( array $commands)

Register the package's custom Artisan commands.

array
provides()

Get the services provided by the provider.

array
when()

Get the events that trigger this service provider to register.

bool
isDeferred()

Determine if the provider is deferred.

Details

void __construct( Application $app)

Create a new service provider instance.

Parameters

Application $app

Return Value

void

void boot()

Bootstrap the application events.

Return Value

void

at line line 19
void register()

Register the service provider.

Return Value

void

void package( string $package, string $namespace = null, string $path = null)

Register the package's component namespaces.

Parameters

string $package
string $namespace
string $path

Return Value

void

string guessPackagePath()

Guess the package path for the provider.

Return Value

string

void commands( array $commands)

Register the package's custom Artisan commands.

Parameters

array $commands

Return Value

void

at line line 32
array provides()

Get the services provided by the provider.

Return Value

array

array when()

Get the events that trigger this service provider to register.

Return Value

array

bool isDeferred()

Determine if the provider is deferred.

Return Value

bool