fix:FcmApiService apiKey nullable 타입 수정
This commit is contained in:
@@ -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');
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user