From 5cf4c10767be2c6a68e4b9e7ef11cd3505b8f568 Mon Sep 17 00:00:00 2001 From: Gareth Nicholson Date: Thu, 30 Apr 2020 10:40:55 +0200 Subject: [PATCH] Add missing semicolon. --- src/Http/Controllers/WebhookController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Http/Controllers/WebhookController.php b/src/Http/Controllers/WebhookController.php index 7f77458..8df0f9a 100644 --- a/src/Http/Controllers/WebhookController.php +++ b/src/Http/Controllers/WebhookController.php @@ -65,7 +65,7 @@ private function decryptMessage(Request $request) $authTag = hex2bin($authTagFromHeader); $cipherText = hex2bin($request->getContent()); - $result = openssl_decrypt($cipherText, 'aes-256-gcm', $key, OPENSSL_RAW_DATA, $iv, $authTag) + $result = openssl_decrypt($cipherText, 'aes-256-gcm', $key, OPENSSL_RAW_DATA, $iv, $authTag); return json_decode($result, true); }