Search⌘ K
AI Features

Challenge: Polymorphism

Learn to apply polymorphism in PHP by creating Author and Editor classes that inherit from an abstract User class. Understand how to use abstract methods and concrete implementations to calculate scores based on the number of articles authored or edited. This lesson strengthens your grasp of polymorphism and type hinting to write efficient, reusable PHP code.

We'll cover the following...

Task

An ...