I was doing some work with the Reflection API, and I ran into something missing from ReflectionParameter.
Turns out, there's no way to get the class-name of a parameter, short of calling getClass() - the problem with that is, there's no way to get the class-name of a parameter without causing the class itself to autoload. Okay, so I can work around that by __toString() and parsing that, but that seems rather hacky. Thoughts?