Hello,
I am looking for a way to list all methods (public, private, etc...) that are defined in a specific class.
It should exclude any methods defined by a parent or implementation.
get_class_methods lists all methids including the ones defined by parent.
Reflection has some functions that would look like what I can do (isUserDefined, isInternal) but seem to be missing the docs on these.
Any suggestions would be great.
Thanks.