PHP Class FluxBB\Server\ServerServiceProvider

Inheritance: extends Illuminate\Support\ServiceProvider
Datei anzeigen Open project: fluxbb/core

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.

Protected Methods

Method Description
registerActions ( Server $server ) : void Register the actions with the server.
registerAuthorizers ( AuthorizationServer $auth ) : void Register all authorizer with the authorization server.
registerValidators ( RequestValidator $validator ) : void Register all validators with the request validator.

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

registerActions() protected method

Register the actions with the server.
protected registerActions ( Server $server ) : void
$server Server
return void

registerAuthorizers() protected method

Register all authorizer with the authorization server.
protected registerAuthorizers ( AuthorizationServer $auth ) : void
$auth AuthorizationServer
return void

registerValidators() protected method

Register all validators with the request validator.
protected registerValidators ( RequestValidator $validator ) : void
$validator RequestValidator
return void

Property Details

$defer protected_oe property

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