summaryrefslogtreecommitdiff
path: root/ext/intl/tests/bug75318.phpt
blob: 1328851f9eb4f4ccce924896ad971d9d12913c41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--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());
?>
===DONE===
--EXPECT--
int(1)
===DONE===