ReflectionMethod_invokeArgs_error2.phpt 573 B

123456789101112131415161718192021222324252627
  1. --TEST--
  2. ReflectionMethod::invokeArgs() further errors
  3. --FILE--
  4. <?php
  5. class TestClass {
  6. public function foo() {
  7. echo "Called foo()\n";
  8. var_dump($this);
  9. return "Return Val";
  10. }
  11. }
  12. $foo = new ReflectionMethod('TestClass', 'foo');
  13. $testClassInstance = new TestClass();
  14. try {
  15. var_dump($foo->invokeArgs($testClassInstance, true));
  16. } catch (Exception $e) {
  17. var_dump($e->getMessage());
  18. }
  19. ?>
  20. --EXPECTF--
  21. Catchable fatal error: Argument 2 passed to ReflectionMethod::invokeArgs() must be of the type array, boolean given in %s on line %d