+ [task#144627] add the count_of_resolved_bug_in_user metrics.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user