Hi, When i define a service like shared on dependency injector is correct call like:
$di->setShared("MYSERVICE", function(){ return new MYCLASS(); })
$this->MYSERVICE->MYMETHOD
always that i call the construct of my class "MYCLASS" is called again, Why?
thanks!