1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-04 19:24:02 +00:00

Make tenancy.token config call in the Sevice class default to an empty string

This commit is contained in:
lukinovec 2023-06-19 13:55:16 +02:00
parent eddb95c014
commit 42b7ab2bd6

View file

@ -10,6 +10,6 @@ class Service
public function __construct()
{
$this->token = config('tenancy.token');
$this->token = config('tenancy.token', '');
}
}