Skip to content

Commit f7d0202

Browse files
committed
fix return type in VerifyWebhookSignature
1 parent 119bcde commit f7d0202

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/Middleware/VerifyWebhookSignature.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
class VerifyWebhookSignature
99
{
1010

11-
public function handle($request, Closure $next): \Illuminate\Http\Response
11+
public function handle($request, Closure $next)
1212
{
1313
// validate that callback is coming from Paystack
1414
if ((! $request->isMethod('post')) || ! $request->header('x-paystack-signature', null)) {

0 commit comments

Comments
 (0)