[ 'id' => $policyId, 'type' => $policyType, 'source' => 'null-graph', ], 'warnings' => ['Graph client not configured; using stub payload'], ], warnings: ['Graph client not configured; using stub payload'], ); } public function getOrganization(array $options = []): GraphResponse { return new GraphResponse( success: true, data: ['id' => $options['tenant'] ?? 'unset'], warnings: ['Graph client not configured; returning stub organization'] ); } public function applyPolicy(string $policyType, string $policyId, array $payload, array $options = []): GraphResponse { return new GraphResponse( success: true, data: ['status' => 'skipped', 'source' => 'null-graph'], warnings: ['Graph client not configured; apply operation skipped'] ); } }