xref: /PHP-8.1/ext/gd/tests/bug74031.phpt (revision a375d547)
1--TEST--
2(Bug #74031) ReflectionFunction for imagepng returns wrong number of parameters
3--EXTENSIONS--
4gd
5--FILE--
6<?php
7
8$ref = new ReflectionFunction('imagepng');
9var_dump(count($ref->getParameters()));
10?>
11--EXPECT--
12int(4)
13