Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Kevin Schroeder's Blog:
ZF2 Dependency Injection: Managing Configuration - Part 1
Apr 26, 2012 @ 13:56:50

Kevin Schroeder has a new post talking about dependency injection in a Zend Framework v2-based application and managing your configurations.

In my previous blog post I showed how you could provide parameters to object that you’re pulling from a DiC and have them populated in the resulting object. As cool as that is, it’s not a massive saving as you need to manually inject the parameters into the DiC. You can often do the same thing by setting up the DiC ahead of time to get the object with those parameters pre-set.

He defines a class (Test) and shows how you can replace the DI container example with a ZendDiConfiguration object that contains the config options. He shows how to use this newly created container to access an instance of this "Test" class.

tagged: zendframework2 dependency injection configuration tutorial

Link:


Trending Topics: