createElement('CustomerClassification'); $node->appendChild($document->createElement('Code', $this->getCode())); return $node; } /** * @return string */ public function getCode() { return $this->code; } /** * @param string $code * * @return $this */ public function setCode($code) { $this->code = $code; return $this; } }