Relative newbie to php, running into an issue with namespaces. Inside my own class within a custom namespace I am trying to call the native php ReflectionClass, but it is telling me that it can not find it within my own namespace. How do I call the global ReflectionClass?
$reflectedNode = new ReflectionClass($obj);
Thanks in advance.