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);
    }