mirror of
https://github.com/php/php-src.git
synced 2026-04-18 13:31:27 +02:00
For rationale, see #6787 Extensions migrated in part 3: * ftp * gmp * iconv * opcache * shmop
22 lines
398 B
PHP
22 lines
398 B
PHP
--TEST--
|
|
Incorrect type inference
|
|
--EXTENSIONS--
|
|
opcache
|
|
--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
|