From d7c5b09b6065e7d02a938be63e5779949047ee79 Mon Sep 17 00:00:00 2001 From: Valentin Sauer Date: Wed, 19 Apr 2023 18:21:00 +0200 Subject: [PATCH] Add HMAC-SHA256 signature method to documention Signature method HMAC-SHA256 has just recently been added but was missing in the documentation of the constructor method. --- src/Oauth1.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Oauth1.php b/src/Oauth1.php index edff2bc..17a0f45 100644 --- a/src/Oauth1.php +++ b/src/Oauth1.php @@ -50,7 +50,7 @@ class Oauth1 * - verifier: OAuth verifier. * - version: OAuth version. Defaults to '1.0'. * - realm: OAuth realm. - * - signature_method: Signature method. One of 'HMAC-SHA1', 'RSA-SHA1', or + * - signature_method: Signature method. One of 'HMAC-SHA1', 'HMAC-SHA256', 'RSA-SHA1', or * 'PLAINTEXT'. Defaults to 'HMAC-SHA1'. * * @param array $config Configuration array.