Application
extends BaseApplication
in package
implements
AuthenticationServiceProviderInterface
Table of Contents
Interfaces
- AuthenticationServiceProviderInterface
Methods
- bootstrap() : void
- Load all the application configuration and bootstrap logic.
- events() : EventManagerInterface
- Register custom event listeners here
- getAuthenticationService() : AuthenticationServiceInterface
- Returns a service provider instance.
- middleware() : MiddlewareQueue
- Setup the middleware queue your application will use.
- services() : void
- Register application container services.
Methods
bootstrap()
Load all the application configuration and bootstrap logic.
public
bootstrap() : void
events()
Register custom event listeners here
public
events(EventManagerInterface $eventManager) : EventManagerInterface
Parameters
- $eventManager : EventManagerInterface
Tags
Return values
EventManagerInterfacegetAuthenticationService()
Returns a service provider instance.
public
getAuthenticationService(ServerRequestInterface $request) : AuthenticationServiceInterface
Parameters
- $request : ServerRequestInterface
-
Request
Return values
AuthenticationServiceInterfacemiddleware()
Setup the middleware queue your application will use.
public
middleware(MiddlewareQueue $middlewareQueue) : MiddlewareQueue
Parameters
- $middlewareQueue : MiddlewareQueue
-
The middleware queue to setup.
Return values
MiddlewareQueue —The updated middleware queue.
services()
Register application container services.
public
services(ContainerInterface $container) : void
Parameters
- $container : ContainerInterface
-
The Container to update.