Phrozn\Config::offsetSet PHP Method

offsetSet() public method

Set config file identified by $offset
public offsetSet ( string $offset, array $value ) : Config
$offset string Configuration file basename (w/o extension)
$value array
return Config
    public function offsetSet($offset, $value)
    {
        $this->configs[$offset] = $value;
        return $this;
    }