You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$instantiation\$container->createProxy('$proxyClass', static function () use (\$containerRef) {
61
+
return \\$proxyClass::staticProxyConstructor(static function (&\$wrappedInstance, \ProxyManager\Proxy\LazyLoadingInterface \$proxy) use (\$containerRef) {
if (self::EXCEPTION_ON_INVALID_REFERENCE === $invalidBehavior) {
229
231
if (!$id) {
230
232
thrownewServiceNotFoundException($id);
231
233
}
232
-
if (isset($this->syntheticIds[$id])) {
234
+
if (isset($container->syntheticIds[$id])) {
233
235
thrownewServiceNotFoundException($id, null, null, [], sprintf('The "%s" service is synthetic, it needs to be set at boot time before it can be used.', $id));
234
236
}
235
-
if (isset($this->getRemovedIds()[$id])) {
237
+
if (isset($container->getRemovedIds()[$id])) {
236
238
thrownewServiceNotFoundException($id, null, null, [], sprintf('The "%s" service or alias has been removed or inlined when the container was compiled. You should either make it public, or stop using the container directly and use dependency injection instead.', $id));
0 commit comments