npacker / nFramework

A simple MVC framework in PHP.
1 stars 0 forks source link

Dependency Injection Container #24

Open npacker opened 9 years ago

npacker commented 9 years ago

Implement a dependency injection container in the framework. Controllers will request classes from the container via reflection; the container will in turn instantiate these classes using reflection.

npacker commented 9 years ago

The base version is in place, works for generic objects that do not require parameters or singleton-type treatment. Have written up plans for things like database handles which will be implemented presently.