function GarbageCollectorStatus::__construct
File
-
vendor/
phpunit/ phpunit/ src/ Event/ Value/ Telemetry/ GarbageCollectorStatus.php, line 34
Class
- GarbageCollectorStatus
- @psalm-immutable
Namespace
PHPUnit\Event\TelemetryCode
public function __construct(int $runs, int $collected, int $threshold, int $roots, ?float $applicationTime, ?float $collectorTime, ?float $destructorTime, ?float $freeTime, ?bool $running, ?bool $protected, ?bool $full, ?int $bufferSize) {
$this->runs = $runs;
$this->collected = $collected;
$this->threshold = $threshold;
$this->roots = $roots;
$this->applicationTime = $applicationTime;
$this->collectorTime = $collectorTime;
$this->destructorTime = $destructorTime;
$this->freeTime = $freeTime;
$this->running = $running;
$this->protected = $protected;
$this->full = $full;
$this->bufferSize = $bufferSize;
}