mirror of
https://github.com/php/php-src.git
synced 2026-04-24 08:28:26 +02:00
a555cc0b3d
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
14 lines
316 B
PHP
14 lines
316 B
PHP
--TEST--
|
|
Bug #75318 (The parameter of UConverter::getAliases() is not optional)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('intl')) die('skip intl extension is not available');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$rm = new ReflectionMethod('UConverter', 'getAliases');
|
|
var_dump($rm->getNumberOfRequiredParameters());
|
|
?>
|
|
--EXPECT--
|
|
int(1)
|