Metaregistrar\EPP\iisEppCreateContactRequest::addIISVat PHP Метод

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

public addIISVat ( $vatnumber )
    public function addIISVat($vatnumber)
    {
        if (!$this->extension) {
            $this->extension = $this->createElement('extension');
            $this->create = $this->createElement('iis:create');
            $this->extension->appendChild($this->create);
            $this->getCommand()->appendChild($this->extension);
        }
        $this->create->appendChild($this->createElement('iis:vatno', $vatnumber));
    }