/** * * @param Resultset $rs */ private static function _getObject(Resultset $rs) { $ret = new self(); while ($rs->NextRow()) { $ret->setSetting($rs->getKey(), $rs->getValue()); } $ret->resetSignature(); return $ret; }