Zend Framework/Doctrine 2 application.:
/app
/modules
/blog
/controllers
/BlogController.php
/domain
/entities
/services
/PostService.php
/repositories
PostService is responsible for basic CRUD opterations, dealing directly with entities and the EntityManager to abstract the business and persistence logic out of my controllers.
If possible, I would like to keep my services as POPOs. What's the best way to access/inject the EntityManager in my service class? I'm new to DI, hence this question. The EntityManager is accessible as a bootstrap resource in my controllers.
Should I just write a abstract class for services to access the EntityManager? Should I write a class to instantiate my services, injecting the EntityManager via the constructor/setter?... which would involve an interface for my services. Should I use a DI framework? If so, which one and how?
Or is there another, better way to do this?
I have done reading on dependency injection but still don't fully grasp it in this context.
Update (12th Jan 2011)
So this is my current working solution: I have an action helper called Resource, it is a helper for retrieving resources from the bootstrap, or you can manually added resources to it: http://pastie.org/1450851
$this->_helper->Resource('em'); // get EntityManager
Can someone please provide some insight into the performance impact of storing bootstrap resources locally within the helper class? Am I over doing it?
TODO: Refactor the resourcesMap out of the class.
And I have an action helper for loading services: http://pastie.org/1450855
TODO: Add checks before attempting to load the service.
Please provide some criticism on the above :)