Which is the correct format for negating instanceof?
if ( ! $a instanceof stdClass)
or
if ( ! ($a instanceof stdClass) )
I've convinced myself the latter is correct way, probably after reading a blog article several years ago, but after some command-line tests, they both seem equivalent. Are they?