mirror of
https://github.com/php/php-src.git
synced 2026-04-18 13:31:27 +02:00
20 lines
425 B
PHP
20 lines
425 B
PHP
--TEST--
|
|
Phar: bug #74383: Wrong reflection on Phar::running
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("phar") || !extension_loaded('reflection')) die("skip"); ?>
|
|
--FILE--
|
|
<?php
|
|
$rc = new ReflectionClass(Phar::class);
|
|
$rm = $rc->getMethod("running");
|
|
echo $rm->getNumberOfParameters();
|
|
echo PHP_EOL;
|
|
echo $rm->getNumberOfRequiredParameters();
|
|
echo PHP_EOL;
|
|
echo (int) $rm->getParameters()[0]->isOptional();
|
|
|
|
?>
|
|
|
|
--EXPECT--
|
|
1
|
|
0
|
|
1
|