mirror of
https://github.com/php/php-src.git
synced 2026-04-13 19:14:16 +02:00
20 lines
375 B
PHP
20 lines
375 B
PHP
--TEST--
|
|
Incorrect type inference
|
|
--FILE--
|
|
<?php
|
|
class PHP_CodeCoverage
|
|
{
|
|
private function addUncoveredFilesFromWhitelist()
|
|
{
|
|
foreach ($uncoveredFiles as $uncoveredFile) {
|
|
for ($i = 1; $i <= $lines; $i++) {
|
|
$data[$uncoveredFile][$i] = PHP_CodeCoverage_Driver::LINE_NOT_EXECUTED;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
?>
|
|
OK
|
|
--EXPECT--
|
|
OK
|