Interface ApplicationInterface

Summary

Fully Qualified Name: Zend\Mvc\ApplicationInterface
Extends: EventsCapableInterface

Description

Methods

Name Description Defined By
getEventManager() Retrieve the event manager EventsCapableInterface
getRequest() Get the request object ApplicationInterface
getResponse() Get the response object ApplicationInterface
getServiceManager() Get the locator object ApplicationInterface
run() Run the application ApplicationInterface

Method Details

getEventManager()

Retrieve the event manager

Lazy-loads an EventManager instance if none registered.

Returns: \EventManagerInterface

getRequest()

Get the request object

Returns: \Zend\Stdlib\RequestInterface

getResponse()

Get the response object

Returns: \Zend\Stdlib\ResponseInterface

getServiceManager()

Get the locator object

Returns: \Zend\ServiceManager\ServiceLocatorInterface

run()

Run the application

Returns: self

Top