From c60057db7257aff79af35206acd0083e63233b7d Mon Sep 17 00:00:00 2001 From: Ahmed Sayed Date: Wed, 20 Apr 2022 16:14:56 +0200 Subject: [PATCH] fix typo --- source/docs/v3/features/tenant-config.blade.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/docs/v3/features/tenant-config.blade.md b/source/docs/v3/features/tenant-config.blade.md index 3d2432f..21e3bc8 100644 --- a/source/docs/v3/features/tenant-config.blade.md +++ b/source/docs/v3/features/tenant-config.blade.md @@ -30,7 +30,7 @@ For example, if your `$storageToConfigMap` looked like this: ```php \Stancl\Tenancy\Features\TenantConfig::$storageToConfigMap = [ 'paypal_api_key' => 'services.paypal.api_key', -], +]; ``` the value of `paypal_api_key` in tenant model would be copied to the `services.paypal.api_key` config when tenancy is initialized. @@ -45,5 +45,5 @@ Sometimes you may want to copy the value to multiple config keys. To do that, sp 'app.locale', 'locales.default', ], -], +]; ```