From 04a9913167339c77a20e079dd5404676530b4ebc Mon Sep 17 00:00:00 2001 From: kurozumi Date: Thu, 12 Sep 2024 17:13:45 +0900 Subject: [PATCH] fix --- Tests/Webhook/StripeRequestParserTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/Webhook/StripeRequestParserTest.php b/Tests/Webhook/StripeRequestParserTest.php index 64accf9..7646c1f 100644 --- a/Tests/Webhook/StripeRequestParserTest.php +++ b/Tests/Webhook/StripeRequestParserTest.php @@ -44,7 +44,7 @@ protected function createRequestParser(): RequestParserInterface protected function getSecret(): string { - return getenv('STRIPE_SIGNING_SECRET'); + return 'STRIPE_SIGNING_SECRET'; } protected function createRequest(string $payload): Request