PHP Class FluxBB\Web\WebServiceProvider

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
boot ( ) : void Bootstrap the application events.
register ( ) : void Register the service provider.

Protected Methods

Method Description
registerApiRoutes ( Router $router ) : void Register the API routes.
registerFrontendRoutes ( Router $router ) : void Register the frontend routes.
registerRoutes ( ) : void Register the routes with the router.
registerViewHelpers ( ) : void Register the view helpers for generating URLs etc.

Method Details

boot() public method

Bootstrap the application events.
public boot ( ) : void
return void

register() public method

Register the service provider.
public register ( ) : void
return void

registerApiRoutes() protected method

Register the API routes.
protected registerApiRoutes ( Router $router ) : void
$router Router
return void

registerFrontendRoutes() protected method

Register the frontend routes.
protected registerFrontendRoutes ( Router $router ) : void
$router Router
return void

registerRoutes() protected method

Register the routes with the router.
protected registerRoutes ( ) : void
return void

registerViewHelpers() protected method

Register the view helpers for generating URLs etc.
protected registerViewHelpers ( ) : void
return void

Property Details

$defer protected_oe property

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