diff --git a/src/Api/DomainsApi.php b/src/Api/DomainsApi.php index bbea213..c20b862 100644 --- a/src/Api/DomainsApi.php +++ b/src/Api/DomainsApi.php @@ -259,6 +259,8 @@ public function update( /** * @see https://dm.realtimeregister.com/docs/api/domains/update * + * @param array|null $transferContacts Deprecated, obsolete. + * * @throws Exception */ public function transfer( @@ -270,6 +272,7 @@ public function transfer( ?string $authcode = null, ?bool $autoRenew = null, ?array $ns = null, + /** @deprecated obsolete */ ?array $transferContacts = null, ?string $designatedAgent = null, ?Zone $zone = null, @@ -304,6 +307,7 @@ public function transfer( } if (is_array($transferContacts)) { + trigger_error('Parameter $transferContacts is deprecated, obsolete.', E_USER_DEPRECATED); $payload['transferContacts'] = $transferContacts; }