xref: /php-src/ext/intl/tests/bug75318.phpt (revision 74859783)
1--TEST--
2Bug #75318 (The parameter of UConverter::getAliases() is not optional)
3--EXTENSIONS--
4intl
5--FILE--
6<?php
7$rm = new ReflectionMethod('UConverter', 'getAliases');
8var_dump($rm->getNumberOfRequiredParameters());
9?>
10--EXPECT--
11int(1)
12