You are here

public function Run::__construct in XHProf 8

Parameters

string $run_id:

string $namespace:

array $data:

File

src/XHProfLib/Run.php, line 37

Class

Run
Provides value object for a profiler run.

Namespace

Drupal\xhprof\XHProfLib

Code

public function __construct($run_id, $namespace, $data) {
  $this->run_id = $run_id;
  $this->namespace = $namespace;
  $this->symbols = $this
    ->parseSymbols($data);
}