We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00153ac commit 9abf823Copy full SHA for 9abf823
components/dependency_injection/lazy_services.rst
@@ -79,6 +79,14 @@ the same signature of the class representing the service. You can also inject
79
the service just like normal into other services. The object that's actually
80
injected will be the proxy.
81
82
+To check if your proxy works you can simply check the interface of the
83
+received object.
84
+
85
+ var_dump(class_implements($service));
86
87
+If the class implements the ProxyManager\Proxy\LazyLoadingInterface your lazy
88
+loaded services will work as expected.
89
90
.. note::
91
92
If you don't install the `ProxyManager bridge`_, the container will just
0 commit comments