interface ParameterInterface

Defines an interface for parameters that are passed on to a View object.

Parameters always consist of name and value. This interface defines that there are methods to return these properties.

Methods

string
getName()

Returns the name of the parameter. This is always a string.

mixed
getValue()

Returns the value of the parameter. Can be any data type.

Details

at line 23
string getName()

Returns the name of the parameter. This is always a string.

Return Value

string The name of the parameter.

at line 29
mixed getValue()

Returns the value of the parameter. Can be any data type.

Return Value

mixed The value of the parameter.