News Feed
Jobs Feed
Sections




News Archive
Bence Eros' Blog:
Using Inheritance
December 02, 2010 @ 12:14:39

In this new post to his blog, Bence looks at how inheritance is commonly used in PHP applications and how, if not controlled carefully can be something that creates bad habits among PHP developers.

In fact I think that using inheritance all the time is a very big mistake and makes your code hard to maintain and more hard to integrate (the latter is a mistake for application codes and a fatal mistake for libraries). The main problem with inheritance is that if you use it for coupling two classes, then a very important property of the subclass is used up: it's superclass. It is taken, reserved, and it can not be used for anything else furthermore. If you want to connect your subclass to an other class using inheritance, you can't.

He recommends avoiding the typical uses of typical superclass/subclass inheritance unless what you're doing specifically requires it. Working with interfaces, abstract classes and good composition planning is a much better idea.

1 comment voice your opinion now!
abstract class inheritance opinion composition


blog comments powered by Disqus

Similar Posts

Brandon Savage's Blog: Revisiting: Why Every Developer Should Write Their Own Framework

Market Day: At A Glance: ASP.net vs. PHP

LearnComputer.com: PHP Interview Questions and Tips

David Sklar's Blog: Runkit, "static", and inheritance

Zend Developer Zone: Zend Framework Hidden Gems: Zend_Config


Community Events











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


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

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