From c42157fdd3056fb995e4c0f81198c6d48a4a2185 Mon Sep 17 00:00:00 2001 From: Kamil Balwierz Date: Thu, 18 Jun 2026 12:22:06 +0200 Subject: [PATCH] Misspelled JWS in exception message --- src/Utilities/RequestParser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utilities/RequestParser.php b/src/Utilities/RequestParser.php index f15c973..c980f7d 100644 --- a/src/Utilities/RequestParser.php +++ b/src/Utilities/RequestParser.php @@ -51,7 +51,7 @@ public function getSignature() { $jws = isset($_SERVER['HTTP_X_JWS_SIGNATURE']) ? $_SERVER['HTTP_X_JWS_SIGNATURE'] : null; if (null === $jws) { - throw new TpayException('Missing JSW header'); + throw new TpayException('Missing JWS header'); } return $jws;