Lines Matching refs:invoke
2 ReflectionMethod::invoke() errors
30 echo "invoke() on a non-object:\n";
32 var_dump($foo->invoke(true));
39 var_dump($foo->invoke(new stdClass()));
46 var_dump($privateMethod->invoke($testClassInstance));
54 $abstractMethod->invoke(true);
61 invoke() on a non-object:
63 Warning: ReflectionMethod::invoke() expects parameter 1 to be object, bool given in %s%eReflectionM…
66 invoke() on a non-instance:
70 string(86) "Trying to invoke private method TestClass::privateMethod() from scope ReflectionMethod"
73 string(53) "Trying to invoke abstract method AbstractClass::foo()"