You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
399 B

--TEST--
ReflectionObject::isInternal() - invalid params
--FILE--
<?php
$r1 = new ReflectionObject(new stdClass);
var_dump($r1->isInternal('X'));
var_dump($r1->isInternal('X', true));
?>
--EXPECTF--
Warning: ReflectionClass::isInternal() expects exactly 0 parameters, 1 given in %s on line %d
NULL
Warning: ReflectionClass::isInternal() expects exactly 0 parameters, 2 given in %s on line %d
NULL