From 99d3ea748ca73ae49c5764a648e1ae26c01ed55e Mon Sep 17 00:00:00 2001 From: Malek Tellissi Date: Fri, 11 Sep 2026 03:13:40 +0200 Subject: [PATCH] Fix nullable clientSecret in ShopifyInstallController Co-Authored-By: Claude Sonnet 4.6 --- app/Http/Controllers/ShopifyInstallController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/ShopifyInstallController.php b/app/Http/Controllers/ShopifyInstallController.php index 6f207fa..12a57d0 100644 --- a/app/Http/Controllers/ShopifyInstallController.php +++ b/app/Http/Controllers/ShopifyInstallController.php @@ -8,7 +8,7 @@ use Illuminate\Support\Facades\Http; class ShopifyInstallController extends Controller { private string $clientId; - private string $clientSecret; + private ?string $clientSecret; private string $shop; private string $scopes = 'read_products,read_inventory,read_orders';