From 8e22869029d758b2204ab006b3d74e33a620bdc7 Mon Sep 17 00:00:00 2001 From: Felix Gradinaru Date: Sat, 15 Aug 2026 18:14:04 +0200 Subject: [PATCH] fix: bind UserContextServiceInterface instead of UserContextInterface in Objects.yaml DefaultUserContextService implements UserContextServiceInterface, which is also the interface SentryClient injects. The previous binding targeted the UserContext value-object interface and only worked through Flow's implicit single-implementation resolution. --- Configuration/Objects.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configuration/Objects.yaml b/Configuration/Objects.yaml index 8ec4355..48afd56 100644 --- a/Configuration/Objects.yaml +++ b/Configuration/Objects.yaml @@ -1,3 +1,3 @@ -Flownative\Sentry\Context\UserContextInterface: +Flownative\Sentry\Context\UserContextServiceInterface: scope: singleton className: Flownative\Sentry\Context\DefaultUserContextService