I know, we do not have concept of multiple inheritance in php. so is there any alternative ?
example: class1 is combination of class2 and class3
i cannot use
class1 extends class2,class3
so how should i use ?
class2 extends class3;
class1 extends class2;
not sure so asking for help ?