The code snippet below shows an interesting technique to daisy chain calls to a particular method without having to implicitly call the parent::method() in the child method. It takes advantage of php’s __call and self <?php class b extends a { public function _init() { echo ‘hello from b::_init<br>’; } } class a { public [...]