<?php class parentx { //public function bagr() { } } class childx extends parentx { public function bagr() { if (!method_exists(get_parent_class($this), __FUNCTION__)) { throw new \LogicException; } // muj kód } } $x = new childx(); $x->bagr();
You have javascript disabled. You will not be able to edit any code.