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