Lines Matching refs:ReflectionClass
2 ReflectionClass::__constructor() - bad arguments
6 var_dump(new ReflectionClass());
12 var_dump(new ReflectionClass(null));
18 var_dump(new ReflectionClass(true));
24 var_dump(new ReflectionClass(1));
30 var_dump(new ReflectionClass(array(1,2,3)));
36 var_dump(new ReflectionClass("stdClass", 1));
42 var_dump(new ReflectionClass("X"));
49 ReflectionClass::__construct() expects exactly 1 argument, 0 given
51 Deprecated: ReflectionClass::__construct(): Passing null to parameter #1 ($objectOrClass) of type o…
55 ReflectionClass::__construct(): Argument #1 ($objectOrClass) must be of type object|string, array g…
56 ReflectionClass::__construct() expects exactly 1 argument, 2 given