Property | Type | Description | |
---|---|---|---|
$config | array |
Method | Description | |
---|---|---|
__construct ( array $config ) | Config constructor. | |
get ( string $key, mixed $default = null ) : mixed | Get an item from an array using "dot" notation. | |
offsetExists ( mixed $offset ) : boolean | Whether a offset exists. | |
offsetGet ( mixed $offset ) : mixed | Offset to retrieve. | |
offsetSet ( mixed $offset, mixed $value ) | Offset to set. | |
offsetUnset ( mixed $offset ) | Offset to unset. | |
set ( string $key, mixed $value ) : array | Set an array item to a given value using "dot" notation. |
public offsetExists ( mixed $offset ) : boolean | ||
$offset | mixed | An offset to check for. |
return | boolean | true on success or false on failure.
The return value will be casted to boolean if non-boolean was returned |
public offsetUnset ( mixed $offset ) | ||
$offset | mixed | The offset to unset. |