<?php class Post { public function save() { $this->custom_updates(); } protected function custom_updates() { echo 'PARENT'; } } class Event extends Post { protected function custom_updates() { echo 'CHILD'; } } $Event = new Event(); $Event->save();
You have javascript disabled. You will not be able to edit any code.