Search⌘ K

Challenge: Inheritance

Explore how to apply inheritance in PHP by creating classes with protected properties and methods. Understand how to extend base classes, override behavior, and implement roles in a practical coding task that reinforces key object-oriented programming concepts.

We'll cover the following...

Task

  • Create a User class. Add a protected property named $username to the class and create a setter method that can set the value of the $username.
...