PHP Class JeroenG\Packager\PackagerServiceProvider

Place the line below in the providers array inside app/config/app.php 'JeroenG\Packager\PackagerServiceProvider',
Author: JeroenG
Inheritance: extends Illuminate\Support\ServiceProvider
Show file Open project: jeroen-g/laravel-packager

Protected Properties

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

Public Methods

Method Description
boot ( ) : void Bootstrap the application events.
provides ( ) : array Get the services provided by the provider.
register ( ) : void Register the command.

Method Details

boot() public method

Bootstrap the application events.
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 command.
public register ( ) : void
return void

Property Details

$commands protected property

The console commands.
protected bool $commands
return boolean

$defer protected property

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