I have a base class that all of my domain classes extend, for example:
class Customer extends IbidemBaseDomain {
. .
}
Is there any way within my base class to determine what class is extending it. So in this example, is there anyway for IbidemBaseDomain to know that it's being extended by Customer?