From f03146ebf31d6d56cb3a9919f182953eb2ec20de Mon Sep 17 00:00:00 2001 From: Snehil Kishore Date: Wed, 13 Nov 2024 13:23:39 +0530 Subject: [PATCH] Typo Fix suggested by GabrielBrittoDev. (#774) --- src/Contract/API/AuthenticationInterface.php | 4 ++-- src/Contract/API/Management/KeysInterface.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Contract/API/AuthenticationInterface.php b/src/Contract/API/AuthenticationInterface.php index 14be13cf..7b6ba139 100644 --- a/src/Contract/API/AuthenticationInterface.php +++ b/src/Contract/API/AuthenticationInterface.php @@ -53,8 +53,8 @@ public function clientCredentials( * @throws ConfigurationException when a redirect uri is not configured * @throws NetworkException when the API request fails due to a network error * - * @see https://auth0.com/docs/api/authentication#authorization-code-flow45 - * @see https://auth0.com/docs/api/authentication#authorization-code-flow-with-pkce46 + * @see https://auth0.com/docs/api/authentication#authorization-code-flow + * @see https://auth0.com/docs/api/authentication#authorization-code-flow-with-pkce */ public function codeExchange( string $code, diff --git a/src/Contract/API/Management/KeysInterface.php b/src/Contract/API/Management/KeysInterface.php index 78a680d1..dfc4b6c4 100644 --- a/src/Contract/API/Management/KeysInterface.php +++ b/src/Contract/API/Management/KeysInterface.php @@ -87,7 +87,7 @@ public function postEncryption( * @throws \Auth0\SDK\Exception\ArgumentException when an invalid `body` are provided * @throws \Auth0\SDK\Exception\NetworkException when the API request fails due to a network error * - * @see https://auth0.com/docs/api/management/v2#!/keys/post-encryption-wrapping-key + * @see https://auth0.com/docs/api/management/v2#!/keys/post-encryption-key */ public function postEncryptionKey( string $kId, @@ -119,7 +119,7 @@ public function postEncryptionRekey( * @throws \Auth0\SDK\Exception\ArgumentException when an invalid `body` are provided * @throws \Auth0\SDK\Exception\NetworkException when the API request fails due to a network error * - * @see https://auth0.com/docs/api/management/v2#!/keys/post-encryption + * @see https://auth0.com/docs/api/management/v2#!/keys/post-encryption-wrapping-key */ public function postEncryptionWrappingKey( string $kId,