1--TEST--
2public bool ReflectionParameter::isArray ( void );
3--CREDITS--
4marcosptf - <marcosptf@yahoo.com.br> - @phpsp - sao paulo - br
5--FILE--
6<?php
7function testReflectionIsArray($a = null, $b = 0, array $c, $d=true, array $e, $f=1.5, $g="", array $h, $i="#F989898") {}
8
9$reflection = new ReflectionFunction('testReflectionIsArray');
10
11foreach ($reflection->getParameters() as $parameter) {
12    var_dump($parameter->isArray());
13}
14?>
15--EXPECT--
16bool(false)
17bool(false)
18bool(true)
19bool(false)
20bool(true)
21bool(false)
22bool(false)
23bool(true)
24bool(false)
25