OOP Tutorial Series (20/65). Prefer one article? Read the complete OOP tutorial.
Short description
Hierarchical inheritance is common for payment gateways, notifiers, and shape hierarchies.
One parent, many children
class Shape {}
class Circle extends Shape {}
class Square extends Shape {}