Hi.
When I call $this->get('myService')
is it possible to somehow pass some custom arguments to that?
For example when registering it I do
$container['myService']=function() use($container) { return new myService($container, $pass_optional_parameters_here_called_from_the_above_get);};
Is this possible?
Thanks in advance