--TEST-- ReflectionMethod::invoke() with non object or null value --FILE-- getMethod("__construct"); try { $m->invoke(null); } catch (ReflectionException $E) { echo $E->getMessage()."\n"; } try { $m->invoke($b); } catch (ReflectionException $E) { echo $E->getMessage()."\n"; } $b = new a(); try { $m->invoke($b); } catch (ReflectionException $E) { echo $E->getMessage()."\n"; } ?> --EXPECT-- Trying to invoke non static method a::__construct() without an object Given object is not an instance of the class this method was declared in