From 42b7ab2bd6f19f476777e7452f5892c9acd65fba Mon Sep 17 00:00:00 2001 From: lukinovec Date: Mon, 19 Jun 2023 13:55:16 +0200 Subject: [PATCH] Make `tenancy.token` config call in the Sevice class default to an empty string --- tests/Etc/EarlyIdentification/Service.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Etc/EarlyIdentification/Service.php b/tests/Etc/EarlyIdentification/Service.php index 29d9414c..01dfa116 100644 --- a/tests/Etc/EarlyIdentification/Service.php +++ b/tests/Etc/EarlyIdentification/Service.php @@ -10,6 +10,6 @@ class Service public function __construct() { - $this->token = config('tenancy.token'); + $this->token = config('tenancy.token', ''); } }