You are here

public function BenchmarkData::__construct in Devel 8.2

Same name and namespace in other branches
  1. 8.3 webprofiler/src/Command/BenchmarkData.php \Drupal\webprofiler\Command\BenchmarkData::__construct()
  2. 8 webprofiler/src/Command/BenchmarkData.php \Drupal\webprofiler\Command\BenchmarkData::__construct()
  3. 4.x webprofiler/src/Command/BenchmarkData.php \Drupal\webprofiler\Command\BenchmarkData::__construct()

Parameters

$token:

$memory:

$time:

File

webprofiler/src/Command/BenchmarkData.php, line 30

Class

BenchmarkData
Class BenchmarkData

Namespace

Drupal\webprofiler\Command

Code

public function __construct($token, $memory, $time) {
  $this->token = $token;
  $this->memory = $memory;
  $this->time = $time;
}