Metaregistrar\EPP\eppContactHandle::setContactHandle PHP Метод

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

Set the handle of the desired contact
public setContactHandle ( string $contactHandle )
$contactHandle string
    public function setContactHandle($contactHandle)
    {
        if (!strlen($contactHandle)) {
            throw new eppException('Contact handle specified is not valid: ' . $contactHandle);
        }
        $this->contactHandle = $contactHandle;
    }