From 335ea915a6f9f8fe4e42bf32af3393ffb800381c Mon Sep 17 00:00:00 2001 From: pro Date: Wed, 21 Jan 2026 19:11:11 +0900 Subject: [PATCH] =?UTF-8?q?fix:FcmApiService=20apiKey=20nullable=20?= =?UTF-8?q?=ED=83=80=EC=9E=85=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/FcmApiService.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Services/FcmApiService.php b/app/Services/FcmApiService.php index 817d23a0..f3ca3a5e 100644 --- a/app/Services/FcmApiService.php +++ b/app/Services/FcmApiService.php @@ -14,11 +14,11 @@ class FcmApiService { private string $baseUrl; - private string $apiKey; + private ?string $apiKey; public function __construct() { - $this->baseUrl = rtrim(config('services.api.base_url'), '/'); + $this->baseUrl = rtrim(config('services.api.base_url', ''), '/'); $this->apiKey = config('services.api.key'); }