Hi, this is simple example of how to use it.
class Test
{
public function testArray(array $a)
{
// do something...
return $a;
}
public function testString(string $a)
{
// do something...
return $a;
}
}
$reflection = new ReflectionClass('Test');
foreach($reflection->getMethods() as $methods){
foreach($methods->getParameters() as $param){
var_dump($param->isArray());
}
}
//bool(true)
//bool(false)