Constructor
Constructor is a PHP topic. In plain words you use it for class Student in a small OOP file. Don’t start with a slogan — start with that picture.
Smallest example: new Student('Asha', 72). Type it, run it, and say what you see. If you can do that from memory, you know Constructor.
From the example next to this theory — Constructor property promotion keeps simple classes short.
Trap — public everything. Fix that before you talk about advanced PHP.
Viva — what is Constructor? Then show new Student('Asha', 72). Then name the trap.
What is Constructor? Show this: new Student('Asha', 72). Trap: public everything.