Scalr\Model\Collections\SettingsCollection::offsetGet PHP Метод

offsetGet() публичный Метод

Gets setting value
См. также: ObjectAccess::offsetGet()
public offsetGet ( string $name ) : string | null
$name string Setting name
Результат string | null
    public function &offsetGet($name)
    {
        if (!(parent::offsetExists($name) || $this->loaded)) {
            $this->load();
        }
        return parent::offsetGet($name);
    }