PHP Class Pinq\Queries\ResolvedParameterRegistry

Author: Elliot Levin ([email protected])
Inheritance: implements Pinq\Queries\IResolvedParameterRegistry
Show file Open project: timetoogo/pinq Class Usage Examples

Protected Properties

Property Type Description
$resolvedParameters mixed[] The resolved values of the parameters, indexed by their respective parameter identifier.

Public Methods

Method Description
__construct ( array $resolvedParameters )
count ( )
getResolvedParameters ( )
none ( ) : ResolvedParameterRegistry Returns an empty resolved parameter registry.
offsetExists ( $parameter )
offsetGet ( $parameter )
offsetSet ( $offset, $value )
offsetUnset ( $offset )

Method Details

__construct() public method

public __construct ( array $resolvedParameters )
$resolvedParameters array

count() public method

public count ( )

getResolvedParameters() public method

none() public static method

Returns an empty resolved parameter registry.
public static none ( ) : ResolvedParameterRegistry
return ResolvedParameterRegistry

offsetExists() public method

public offsetExists ( $parameter )

offsetGet() public method

public offsetGet ( $parameter )

offsetSet() public method

public offsetSet ( $offset, $value )

offsetUnset() public method

public offsetUnset ( $offset )

Property Details

$resolvedParameters protected property

The resolved values of the parameters, indexed by their respective parameter identifier.
protected mixed[] $resolvedParameters
return mixed[]