Hello!
I have a situation where I need to inject the DI container into a class that is constructed using the container. How would I configure the container to make it possible to inject itself?
use Yiisoft\Di\Container;
class MyClass
{
public function __construct(Container $cont)
{
...
}
}