From c42ebcf57808352787514067e238188f7e53fa27 Mon Sep 17 00:00:00 2001 From: Tobias Lobitz Date: Mon, 8 Jan 2024 10:57:58 +0100 Subject: [PATCH] style: Add whitespace after if statement --- src/Checkout.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Checkout.php b/src/Checkout.php index 582cc554..99a7ea5c 100644 --- a/src/Checkout.php +++ b/src/Checkout.php @@ -99,7 +99,7 @@ public static function create($owner, array $sessionOptions = [], array $custome $data['return_url'] = $sessionOptions['return_url'] ?? route('home'); // Remove return URL for embedded UI mode when no redirection is desired on completion... - if(isset($data['redirect_on_completion']) && $data['redirect_on_completion'] === 'never') { + if (isset($data['redirect_on_completion']) && $data['redirect_on_completion'] === 'never') { unset($data['return_url']); } } else {