News Feed
Jobs Feed
Sections




News Archive
Court Ewing's Blog:
A Simple Alternative to Global Registry Dependency
December 09, 2010 @ 15:19:22

Court Ewing has written up a post looking at an alternative to a commonly used bad design pattern - the global registry dependency - a method that uses a singleton to control access to a class-wide instance of an object.

This gives you flexibility when configuring and setting your adapter, and it allows you to instantiate a new service without having to explicitly set commonly used dependencies, but you are ultimately just replacing one hardcoded object call with another. This means you are still limited in your ability to unit test the class properly, and you will have a difficult time debugging if you ever need to find out exactly when and where your database adapter was configured.

In his simple solution uses static methods to assign the database adapter when the bootstrap process is started instead of when the object is created. This adapter is assigned to an abstract class, so it's created even outside the class instantiations. There's one caveat to doing things this way, though - depending on the needs, you might have to have more than one abstract class and things could get tricky.

0 comments voice your opinion now!
alternative global registry dependency example


blog comments powered by Disqus

Similar Posts

Sebastian Bergmann's Blog: Stubbing Hard-Coded Dependencies

Synfony Project: New testing framework

SitePoint PHP Blog: Dynamic global functions in PHP

Raphael Stolt's Blog: Creating and using Phing ad hoc tasks

Community News: Welovelocal.com offers SOAP API (with PHP examples)


Community Events









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


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

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