+ [task#144627] add the count_of_resolved_bug_in_user metrics.

This commit is contained in:
wangzemei
2025-06-09 09:26:02 +08:00
committed by 曹延义
parent 27cb44d4d1
commit 06a51b5d63
@@ -0,0 +1,15 @@
<?php
class count_of_resolved_bug_in_user extends baseCalc
{
public $dataset = '';
public $fieldList = array();
public $result = array();
public function calculate($row)
{
if(!isset($this->result[$row->resolvedBy])) $this->result[$row->resolvedBy] = array();
$this->result[$row->resolvedBy][$row->id] = $row->id;
}
}