Method | Description | |
---|---|---|
__construct ( array $data ) | Constructor. Sets up the properties. | |
offsetExists ( mixed $name ) : boolean | Checks if a value with the given name exists. | |
offsetGet ( string $name ) : mixed | Returns the value with the given name. | |
offsetSet ( string $name, mixed $value ) : void | Stores the given value with the given name. | |
offsetUnset ( string $name ) : void | Removes the value with the given name. |
public __construct ( array $data ) | ||
$data | array | Context data. |
public offsetExists ( mixed $name ) : boolean | ||
$name | mixed | The name of a value. |
return | boolean | Whether or not a value with the given name exists. |
public offsetUnset ( string $name ) : void | ||
$name | string | The name of a value. |
return | void |