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
thrownew \InvalidArgumentException(sprintf('Invalid definition for service of class "%s": setting the "proxy" tag on a service requires it to be "lazy".', $definition->getClass()));
@@ -114,7 +114,7 @@ public function getProxifiedClass(Definition $definition): ?string
114
114
thrownew \InvalidArgumentException(sprintf('Invalid definition for service of class "%s": the "interface" attribute is missing on the "proxy" tag.', $definition->getClass()));
@@ -123,15 +123,15 @@ public function getProxifiedClass(Definition $definition): ?string
123
123
if (!isset($tag['interface'])) {
124
124
thrownew \InvalidArgumentException(sprintf('Invalid definition for service of class "%s": the "interface" attribute is missing on a "proxy" tag.', $definition->getClass()));
125
125
}
126
-
if (!\interface_exists($tag['interface'])) {
126
+
if (!interface_exists($tag['interface'])) {
127
127
thrownew \InvalidArgumentException(sprintf('Invalid definition for service of class "%s": several "proxy" tags found but "%s" is not an interface.', $definition->getClass(), $tag['interface']));
0 commit comments