OOP: Composition & Inheritance in PHP

Adrienne Domingus
4 min readJun 7, 2021

Inheritance is one of the primary tenets of object-oriented programming languages, but each language implements it at least slightly differently. I’m coming from a background in Python, and it took me a bit to understand the different ways objects can extend or inherit behavior in PHP. Here is what I have learned!

Extends

--

--