I create my own class in which I want to inherit the СUser class and one of its methods.
abstract class MineClass extends CAllUser { public static function GetByID($ID){ parent::GetByID($ID); } } But I can't call him
$htmm = MineClass::GetByID($_SESSION['SESS_AUTH']['USER_ID']);