From b076f80ce5cd95bc04fbead102bb4568fdf8e64d Mon Sep 17 00:00:00 2001 From: netkas Date: Tue, 11 Feb 2025 13:31:15 -0500 Subject: [PATCH] Updated docs --- src/Socialbox/Enums/Status/SignatureVerificationStatus.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Socialbox/Enums/Status/SignatureVerificationStatus.php b/src/Socialbox/Enums/Status/SignatureVerificationStatus.php index 3fb4cb0..aa5d277 100644 --- a/src/Socialbox/Enums/Status/SignatureVerificationStatus.php +++ b/src/Socialbox/Enums/Status/SignatureVerificationStatus.php @@ -10,17 +10,17 @@ case INVALID = 'INVALID'; /** - * The provided signature was valid but the public key used to verify the signature was not the expected public key. + * The provided signature was valid, but the public key used to verify the signature was not the expected public key. */ case PUBLIC_KEY_MISMATCH = 'PUBLIC_KEY_MISMATCH'; /** - * The provided signature was valid but the UUID used to verify the signature was not the expected UUID. + * The provided signature was valid, but the UUID used to verify the signature was not the expected UUID. */ case UUID_MISMATCH = 'UUID_MISMATCH'; /** - * The provided signature was valid but the signing key has expired. + * The provided signature was valid, but the signing key has expired. */ case EXPIRED = 'EXPIRED';