Is there away to set up a class so that if a method is not defined, instead of throwing an error it would go to a catch-all function?
such that if i call $myClass->foobar();
but foobar was never set in the class definition, some other method will handle it?