summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/bug70960.phpt
blob: 30885cd1fad29681f5942bfd1eace32331a33dde (plain)
1
2
3
4
5
6
7
8
9
10
--TEST--
Bug #70960 (ReflectionFunction for array_unique returns wrong number of parameters)
--FILE--
<?php

$ref = new ReflectionFunction('array_unique');
var_dump(count($ref->getParameters()));
?>
--EXPECT--
int(2)