Phergie_Config::offsetSet PHP Method

offsetSet() public method

Sets the value of a configuration setting.
See also: ArrayAccess::offsetSet()
public offsetSet ( string $offset, mixed $value ) : void
$offset string Configuration setting name
$value mixed New setting value
return void
    public function offsetSet($offset, $value)
    {
        $this->settings[$offset] = $value;
    }