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

UltraVisual Blog: Running PHP Eclipse with FDT / FB & Ant

Jason Sheet\'s Blog: Soundex implemented in PHP

DevShed: Using PDO Objects in PHP 5 - Using the PDO extension

DevShed: Performing Full-text and Boolean Searches with MySQL

DevShed: Introducing the Chain of Responsibility Between PHP Objects


Community Events









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


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

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