This lesson shows how methods in PHP classes use the $this keyword to access the current object's properties. When you create an object and call its method, inside that method $this points to the object itself. This lets you read or change the object's properties. For example, setting $this->color changes the color property of the object that called the method. The execution table traces creating the object, calling the method, assigning the property, and printing the result. The variable tracker shows how $car->color changes from null to 'red'. Key moments explain why $this is needed and what it means. The quiz checks understanding of $this and property changes. Remember, $this is your way to say "this object" inside its own methods.