How do you get the name of the class from which a method call originates. eg
Class Someclass{ AnotherClass/methodname(); } Class AnotherClass{ function getNameOfOriginatingClass{ //how do u achieve this? } } This question will help me solve this problem How to get the class from which a request originates in codeignitor please check it and help me solve it
how do i let AnotherClass know that the request is coming from Someclass?