Clears all dependency registrations managed by this container.
Register a dependency by concrete class type.
Register a dependency by super type.
Removes a registered dependency by type.
Resolve dependencies.
Resolve dependencies using a qualifier.
Resolve all dependencies registered to a super type.
Returns a global singleton instance of a dependency container.
The dependency container maintains all dependencies registered with it.
Dependencies registered by a container can be resolved as long as they are still registered with the container. Upon resolving a dependency, an instance is fetched according to a specific scope which dictates how instances of dependencies are created. Resolved dependencies will be injected before being returned.
In most cases you want to use a global singleton dependency container provided by getInstance() to manage all dependencies. You can still create new instances of this class for exceptional situations.