ImageServiceProvider
extends ServiceProvider
in package
Table of Contents
Properties
- $defer : bool
- Indicates if loading of the provider is deferred.
- $provider : ServiceProvider
- Actual provider
Methods
- __construct() : void
- Create a new service provider instance.
- boot() : void
- Bootstrap the application events.
- provides() : array<string|int, mixed>
- Get the services provided by the provider.
- register() : void
- Register the service provider.
- getProvider() : ProviderInterface
- Return ServiceProvider according to Laravel version
Properties
$defer
Indicates if loading of the provider is deferred.
protected
bool
$defer
= false
$provider
Actual provider
protected
ServiceProvider
$provider
Methods
__construct()
Create a new service provider instance.
public
__construct(Application $app) : void
Parameters
- $app : Application
boot()
Bootstrap the application events.
public
boot() : void
provides()
Get the services provided by the provider.
public
provides() : array<string|int, mixed>
Return values
array<string|int, mixed>register()
Register the service provider.
public
register() : void
getProvider()
Return ServiceProvider according to Laravel version
private
getProvider() : ProviderInterface