Since PHP is a loosely typed language, how can the DIP principle be applied in PHP?
A practical example would be greatly appreciated.
|
Since PHP is a loosely typed language, how can the DIP principle be applied in PHP? A practical example would be greatly appreciated.
| ||||
|
feedback
|
|
PHP 5 introduced "Type Hinting", which enables functions and methods to declare "typed" parameters (objects). For most cases, it should be not a big task to port examples, e.g. from Java, to PHP 5. A really simple example:
| ||||
|
feedback
|