cache = $cacheManager->store($cacheStoreName); } public function handle(): void { if (tenancy()->initialized) { $this->cache->put('key', tenant()->getTenantKey()); } else { $this->cache->put('key', 'central-value'); } } }