News Feed
Jobs Feed
Sections




News Archive
Wojciech Sznapka's Blog:
Loosening dependencies with closures in PHP
September 27, 2011 @ 08:22:46

Wojciech Sznapka has a new tutorial posted to his blog today looking at removing some of the issues surrounding dependencies in PHP applications with the help of closures.

Today I ran into a little issue: how to pass generic logger object to method? I wanted to get some verbose output from method, which I call from Command, but onc time it should log with Symfony2 OutputInterface and other time it should use monolog logger. Of course I can make some wrapper class for both of them, but it would be kind of an overkill. The Closure from PHP 5.3 came with solution.

His alternative creates a closure for his Symfony2 application that defines the logger handling in an abstract way and injects that object into his job queue manager for handling. This way the manager doesn't have to worry about handing the mailing itself, it's just deferred to the mailing object. You can find out more about this technique, dependency injection, here.

0 comments voice your opinion now!
symfony2 dependency injection object email tutorial


blog comments powered by Disqus

Similar Posts

DevShed: Introducing the Composite Pattern in PHP 5

PHPBuilder.com: Using SPL Iterators in PHP to Interact with Different Data Types

onPHP5.com: Clickable, Obfuscated Email Addresses

Lineke Kerckhoffs-Willems' Blog: How to use the Symfony2 SonataAdminBundle

Rob Allen's Blog: On models in a Zend Framework application


Community Events











Don't see your event here?
Let us know!


zendframework2 object unittest interview example opinion release functional podcast testing framework composer tool language community series development introduction conference code

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework