Skip to content

Commit

Permalink
Merge pull request #3 from io-digital/syntax-fixes
Browse files Browse the repository at this point in the history
Add missing semicolon.
  • Loading branch information
garethnic authored Apr 30, 2020
2 parents 9aff68f + 5cf4c10 commit 1325178
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Controllers/WebhookController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 1325178

Please sign in to comment.