Metaregistrar\EPP\eppContactHandle::setContactHandle PHP Method

setContactHandle() public method

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;
    }