Scalr\Model\Collections\SettingsCollection::offsetGet PHP Méthode

offsetGet() public méthode

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