-
We need a way to simplify the Dependency Injection process, such as attribute [Inject] to automatically inject dependencies.
-
This makes approaching #6 more feasible.
-
I've created a gist that shows how DI could be solved for cases using only React features: https://gist.github.com/topa/efd6b170e18bda579aa751c5164f9211.
Do you think this could be also a valid app…
-
Hi!
Have been trying to figure out what exactly a `VersionSchemaMigration` does and what is its use case but so far no luck. Would you please be so kind to explain or update the documentation?
W…
-
I have a detailed my issue here: http://forums.laravel.io/viewtopic.php?pid=58597#p58597
-
Figure out how to approach dependency injection.
For example a `username` and `password` or `api_key` would be considered dependencies. Middleware would be responsible for using these, or possibley e…
-
Dotkernel API needs to create handlers using its own factory and _inject_ dependencies (using setters) instead of getting them through the constructor.
This way handler constructors will not to be pu…
-
The current dependency injection syntax is pretty gnarly and looks like this:
```rust
#[derive(Component, Debug)]
#[component(inject = "init_foo(depname::Foo)")]
#[component(inject = "init_bar(d…
-
The `Urho.Extensions.WinForms.UrhoSurface` uses `Activator.CreateInstance` to produce the application instance in `Show`. This means that one cannot inject any dependencies and has to resort to some s…
-
I'm trying to figure out the best way to fill a dependency from a service midway test.
// Service
```
$provide.factory('$dashboard', ['$http', '$userToken', function ($http, userToken1) {
var …