mirror of
https://github.com/php/php-src.git
synced 2026-03-25 00:32:23 +01:00
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
14 lines
359 B
PHP
14 lines
359 B
PHP
--TEST--
|
|
XMLReader: Bug #74457 Wrong reflection on XMLReader::expand
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("xmlreader")) die("skip xmlreader extension not available"); ?>
|
|
--FILE--
|
|
<?php
|
|
$rm = new ReflectionMethod(XMLReader::class, 'expand');
|
|
var_dump($rm->getNumberOfParameters());
|
|
var_dump($rm->getNumberOfRequiredParameters());
|
|
?>
|
|
--EXPECT--
|
|
int(1)
|
|
int(0)
|