I need to determine, after all files have been included, which classes extend a parent class, so:
class foo{
}
class boo extends foo{
}
class bar extends foo{
}
and I'd like to be able to grab an array like:
array('boo','bar');
I need to determine, after all files have been included, which classes extend a parent class, so:
class foo{
}
class boo extends foo{
}
class bar extends foo{
}
and I'd like to be able to grab an array like:
array('boo','bar');