PHPCfg\Op::getAttribute PHP Метод

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

public getAttribute ( $key, $default = null )
    public function &getAttribute($key, $default = null)
    {
        if (!$this->hasAttribute($key)) {
            return $default;
        }
        return $this->attributes[$key];
    }