You are here

public function Aggregator::addRun in XHProf 8

Parameters

$run_id:

$namespace:

Return value

void

File

src/XHProfLib/Aggregator.php, line 29

Class

Aggregator

Namespace

Drupal\xhprof\XHProfLib

Code

public function addRun($run_id, $namespace) {
  $this->runs[] = [
    'run_id' => $run_id,
    'namespace' => $namespace,
  ];
}