News Feed
Jobs Feed
Sections




News Archive
PHPMaster.com:
Constructors and the Myth of Breaking the Liskov Substitution Principle
October 08, 2012 @ 11:53:13

On PHPMaster.com there's a new post in a series looking at the SOLID design principles in PHP development. In this new tutorial they try to dispel the myth that constructors break the Liskov Substitution Principle ("L" in "SOLID").

Rants aside, the morale of the story can be boiled down to the following: "Object construction is not part of the contract honored by its implementers". It's easier to grasp concepts by example rather than reading dull theory, so in this article I'll be demonstrating from a practical standpoint how the implementation of different constructors down the same hierarchy isn't a violation of the Liskov Substitution Principle, which is a reason why you shouldn't fall into the temptation of tainting your interfaces with constructors.

He illustrates the point with a simple PDO class that implements a "DatabaseAdapterInterface" interface that defines its own constructor that follows the defaults of the PDO extension. He goes on and changes the constructor for the class a bit to take in an array of config options rather than the DSN/User/Password combo. Inside of this constructor, those values are then taken and pushed into PDO to create the connection. He also suggests one other solution - the injection of a connection object ("ConnectionDefinition") into the constructor instead of the configuration directly.

0 comments voice your opinion now!
solid development liskov substitution principle tutorial constructor


blog comments powered by Disqus

Similar Posts

Aaron Wormus' Blog: WS02 at Zend Conf

Web Builder Zone: NetBeans vs. Vim for PHP development

Lorenzo Alberton's Blog: Navigation Through Paragraphs in an Article

DevShed: Building a Logout Class

Tutorialzine.com: Advanced Event Timeline With PHP, CSS & jQuery


Community Events











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


conference opinion database zendframework2 framework google usergroup functional release phpunit podcast symfony2 introduction development series community testing language rest interview

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