Understand the Inheritance in PHP
Inheritance gives you the ability to use the code from another class. It helps reduce repetition and also makes your code organized.
When you create a parent class with common properties and methods, the child class extends it and gets access to that code. The child can also add its own features or override the parent’s methods.
dzone.com
dzone.com
