HttpViewControllerInterface

Extends

Interface HttpViewControllerInterface

category

System

package

Http

subpackage

Interfaces

Methods

Default action method.

actionDefault() : \HttpControllerResponseInterface

Every controller child class requires at least the default action method, which is invoked when the ::_getQueryParameterData('do') value is not separated by a trailing slash.

Every action method have to return an instance which implements the http controller response interface.

Response

\HttpControllerResponseInterface

Processes a http response object which is get by invoking an action method.

proceed(\HttpContextInterface $httpContext) 

The action method is determined by the current http context.

Arguments

$httpContext

\HttpContextInterface

Http context object which hold the request variables.