static function RealisticDummyContentException::GetCalled in Realistic Dummy Content 7
Returns the called function through a backtrace
1 call to RealisticDummyContentException::GetCalled()
File
- api/
includes/ RealisticDummyContentException.inc, line 51 - Define RealisticDummyContentException autoload class.
Class
- RealisticDummyContentException
- An Exception.
Code
static function GetCalled() {
// Get caller will return the called function because the simple fact
// of using another function will make the backtrace one-level deeper
return self::GetCaller();
}