You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

28 lines
482 B

<?php declare(strict_types = 1);
/**
* Transients data transfer object.
*
* @package query-monitor
*/
class QM_Data_Transients extends QM_Data {
/**
* @var array<int, array{
* name: string,
* filtered_trace: mixed[],
* component: QM_Component,
* type: string,
* value: mixed,
* expiration: int,
* exp_diff: string,
* size: int,
* size_formatted: string,
* }>
*/
public $trans = array();
/**
* @var bool
*/
public $has_type;
}