diff --git a/docs/installation/base-installation.md b/docs/installation/base-installation.md index 710c6a5..e0b282c 100644 --- a/docs/installation/base-installation.md +++ b/docs/installation/base-installation.md @@ -88,6 +88,11 @@ return [ */ 'landlord_database_connection_name' => null, + /* + * This key will be used to associate the current tenant in the context + */ + 'current_tenant_context_key' => 'tenantId', + /* * This key will be used to bind the current tenant in the container. */ @@ -110,20 +115,6 @@ return [ 'migrate_tenant' => MigrateTenantAction::class, ], - /* - * You can customize the way in which the package resolves the queueable to a job. - * - * For example, using the package laravel-actions (by Loris Leiva), you can - * resolve JobDecorator to getAction() like so: JobDecorator::class => 'getAction' - */ - 'queueable_to_job' => [ - SendQueuedMailable::class => 'mailable', - SendQueuedNotifications::class => 'notification', - CallQueuedClosure::class => 'closure', - CallQueuedListener::class => 'class', - BroadcastEvent::class => 'event', - ], - /* * Jobs tenant aware even if these don't implement the TenantAware interface. */