Passing Down Constructor Legacies from Ancestors We’ve called the parent constructor in the last few articles without actually going into much detail about it. If the child class does not define a constructor, it inherits the parent constructor like any other method. If a child class defines a constructor of its own, the parent constructor will be overridden. To call the parent constructor, a call to parent::__construct() must be done from the child constructor. Recap: Review the previous article and code. https://blog.devgenius.io/php-p66-object-comparison-a2e84a8e3e13 https://github.com/dinocajic/php-youtube-tutorials/tree/master Looking at the Lamborghini class, it’s just an empty class that extends Car. The Car class does contain