php-src/ext/reflection/tests/reflectionObject_isInternal_error.phpt

16 lines
373 B
Plaintext
Raw Normal View History

2007-07-12 21:08:02 +00:00
--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: Wrong parameter count for ReflectionClass::isInternal() in %s on line 4
NULL
Warning: Wrong parameter count for ReflectionClass::isInternal() in %s on line 5
NULL