/** * get single Verwantschap instance from a DOMElement * * @param DOMElement $node * @return Verwantschap */ public static function fromDOMElement(DOMElement $node) { $o = new Verwantschap(); $o->assignByHash(self::domNodeToHash($node, self::$FIELD_NAMES, self::$DEFAULT_VALUES, self::$FIELD_TYPES)); $o->notifyPristine(); return $o; }