Community Page
- s13pro.com/ Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- I appreciate you taking the time to do that. Who knows how this could all turn out. Right now I'm just hoping to catch peoples attention.
- I thought I'd mention the Symfony component on the off-chance you hadn't seen it but I'm probably at the edge of my knowledge about the right way to create a DI so I'll leave that...
- I really like the work done with the Symfony container, it's extremely high quality code. I feel it doesn't go far enough and doesn't represent a full framework for the job of creation...
- thanks for your article ! I have developed one Di Container for PHP, inspired by the Spring one. Hope you enjoy it: http://bitbucket.org/ametaireau/spiraldi/ . Any feedback is welcome. for now,...
- Does the newly-released Dependency Injection component from the Symfony team (http://components.symfony-project.org/dependency-injection/) address your requirements? It's been decoupled from...
Jump to original thread »
After reading Tony Bibbs post on how he cut his usage of Zend_Log in half by taking
$logger = Zend_Registry::get('logger');
$logger->log($errorMessage,1);
And creating
MyLog::log('Kernel starting up');
While the benefits of abstracting the ... Continue reading »
$logger = Zend_Registry::get('logger');
$logger->log($errorMessage,1);
And creating
MyLog::log('Kernel starting up');
While the benefits of abstracting the ... Continue reading »
0 comments
This thread has no comments yet.