1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
--TEST--
Test for bug #1357: Function signature using variadics is reported as being not executed
--INI--
xdebug.mode=coverage
--FILE--
<?php
xdebug_start_code_coverage(XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE);
class A {
public function test(...$a) {
print_r($a);
}
public function works($a) {
echo $a;
}
}
function works(...$a) {
print_r($a);
}
(new A)->test('hi');
(new A)->works('hi');
works('hi');
xdebug_stop_code_coverage(false);
var_dump(xdebug_get_code_coverage());
?>
--EXPECTF--
Array
(
[0] => hi
)
hiArray
(
[0] => hi
)
array(1) {
["%sbug01357.php"]=>
array(10) {
[7]=>
int(1)
[8]=>
int(1)
[11]=>
int(1)
[12]=>
int(1)
[16]=>
int(1)
[17]=>
int(1)
[19]=>
int(1)
[21]=>
int(1)
[23]=>
int(1)
[25]=>
int(1)
}
}
|