Right now when you use DI\factory you have to do: ``` php factory(function(Container $c) { return new Thing($c->get(Service::class)); }); ``` What I'd really like to do is this: ``` php factory(function(Service $s) { return new Thing($s); }); ```