mirror of
https://github.com/php/php-src.git
synced 2026-04-20 22:41:20 +02:00
Merge branch 'PHP-8.0'
* PHP-8.0: Fix parameter stats generation [ci skip]
This commit is contained in:
@@ -1351,7 +1351,7 @@ if ($printParameterStats) {
|
||||
foreach ($fileInfos as $fileInfo) {
|
||||
foreach ($fileInfo->getAllFuncInfos() as $funcInfo) {
|
||||
foreach ($funcInfo->args as $argInfo) {
|
||||
if (!isset($context->parameterStats[$argInfo->name])) {
|
||||
if (!isset($parameterStats[$argInfo->name])) {
|
||||
$parameterStats[$argInfo->name] = 0;
|
||||
}
|
||||
$parameterStats[$argInfo->name]++;
|
||||
|
||||
Reference in New Issue
Block a user