*/ public function resolveForTenant(Tenant $tenant, array $overrides = []): array { $resolution = $this->connections->resolveDefault($tenant, 'microsoft'); if (! $resolution->resolved || $resolution->connection === null) { throw ProviderConfigurationRequiredException::forTenant( $tenant, provider: 'microsoft', resolution: $resolution, ); } return $this->gateway->graphOptions($resolution->connection, $overrides); } }