Fix nullable clientSecret in ShopifyInstallController
Deploy / deploy (push) Successful in 13s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Malek Tellissi
2026-09-11 03:13:40 +02:00
co-authored by Claude Sonnet 4.6
parent 2b7913311a
commit 99d3ea748c
@@ -8,7 +8,7 @@ use Illuminate\Support\Facades\Http;
class ShopifyInstallController extends Controller class ShopifyInstallController extends Controller
{ {
private string $clientId; private string $clientId;
private string $clientSecret; private ?string $clientSecret;
private string $shop; private string $shop;
private string $scopes = 'read_products,read_inventory,read_orders'; private string $scopes = 'read_products,read_inventory,read_orders';