From 00dfe3f54c1c0184fc3b613aa866ccfc9778d2d3 Mon Sep 17 00:00:00 2001 From: Stanislau Komar Date: Tue, 23 Sep 2025 17:17:32 +0400 Subject: [PATCH] v1.7.1 Fix curcular proxy service initialization --- src/ContainerCompiled.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ContainerCompiled.php b/src/ContainerCompiled.php index 4b9466d..ae72ce4 100644 --- a/src/ContainerCompiled.php +++ b/src/ContainerCompiled.php @@ -57,7 +57,7 @@ public function get(string $id): object * * @psalm-suppress MixedMethodCall */ - $instance = new $proxyClass($this); + $instance = new $proxyClass($this->decorated); return $instance; }