mirror of
https://github.com/php/php-src.git
synced 2026-04-22 23:48:14 +02:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
12 lines
240 B
PHP
12 lines
240 B
PHP
--TEST--
|
|
Bug #75318 (The parameter of UConverter::getAliases() is not optional)
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
$rm = new ReflectionMethod('UConverter', 'getAliases');
|
|
var_dump($rm->getNumberOfRequiredParameters());
|
|
?>
|
|
--EXPECT--
|
|
int(1)
|