Beispiel #1
0
 /**
  * @param null $postalInfo
  * @param string $personType |$personType=self::PERS_TYPE_PRIVATPERSON
  * @param null $email
  * @param null $voice
  * @param null $fax
  * @param bool|false $whoisHideEmail
  * @param bool|false $whoisHidePhone
  * @param bool|false $whoisHideFax
  * @param null $password
  * @param null $status
  * @throws eppException
  */
 public function __construct($postalInfo = null, $personType = self::PERS_TYPE_UNSPECIFIED, $email = null, $voice = null, $fax = null, $whoisHideEmail = false, $whoisHidePhone = false, $whoisHideFax = false, $password = null, $status = null)
 {
     parent::__construct($postalInfo, $email, $voice, $fax, $password, $status);
     $this->setPersonType($personType);
     $this->setWhoisHideEmail($whoisHideEmail);
     $this->setWhoisHideFax($whoisHideFax);
     $this->setWhoisHidePhone($whoisHidePhone);
 }