Posts

Showing posts with the label extends

Inheritance in PHP

Inheritance (extending classes) is realised in PHP with extends keyword: class albumController extends MfStandardController { Now, object of class albumController will be of type albumController, but also of type MfStandardController, because MfStandardController is a parent of this class