PHP Class Robbo\Presenter\PresenterServiceProvider

Inheritance: extends Illuminate\Support\ServiceProvider
Show file Open project: robclancy/presenter

Protected Properties

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

Public Methods

Method Description
provides ( ) : array Get the services provided by the provider.
register ( ) : void Register the service provider.
registerDecorator ( ) : void Register the decorator. If you want to extend the decorator you would basically copy what this method does in start/global.php or your own service provider.
registerFactory ( ) : void Copied from the view service provider.

Method Details

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

registerDecorator() public method

Register the decorator. If you want to extend the decorator you would basically copy what this method does in start/global.php or your own service provider.
public registerDecorator ( ) : void
return void

registerFactory() public method

.. Register the view factory.
public registerFactory ( ) : void
return void

Property Details

$defer protected property

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