Scalr\Model\Collections\SettingsCollection::offsetGet PHP Method

offsetGet() public method

Gets setting value
See also: ObjectAccess::offsetGet()
public offsetGet ( string $name ) : string | null
$name string Setting name
return string | null
    public function &offsetGet($name)
    {
        if (!(parent::offsetExists($name) || $this->loaded)) {
            $this->load();
        }
        return parent::offsetGet($name);
    }