ReflectionObject_getConstants_error.phpt 381 B

1234567891011121314151617
  1. --TEST--
  2. ReflectionObject::getConstants() - invalid params
  3. --FILE--
  4. <?php
  5. class X {
  6. }
  7. $rc = new ReflectionObject(new X);
  8. $rc->getConstants('X');
  9. $rc->getConstants(true);
  10. ?>
  11. --EXPECTF--
  12. Warning: ReflectionClass::getConstants() expects exactly 0 parameters, 1 given in %s on line %d
  13. Warning: ReflectionClass::getConstants() expects exactly 0 parameters, 1 given in %s on line %d