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.
38 lines
571 B
38 lines
571 B
<?php declare(strict_types = 1);
|
|
/**
|
|
* Duplicate database queries data transfer object.
|
|
*
|
|
* @package query-monitor
|
|
*/
|
|
|
|
class QM_Data_DB_Dupes extends QM_Data {
|
|
/**
|
|
* @var int
|
|
*/
|
|
public $total_qs;
|
|
|
|
/**
|
|
* @var array<string, array<string, int>>
|
|
*/
|
|
public $dupe_sources;
|
|
|
|
/**
|
|
* @var array<string, array<string, int>>
|
|
*/
|
|
public $dupe_callers;
|
|
|
|
/**
|
|
* @var array<string, array<string, int>>
|
|
*/
|
|
public $dupe_components;
|
|
|
|
/**
|
|
* @var array<string, array<int, int>>
|
|
*/
|
|
public $dupes;
|
|
|
|
/**
|
|
* @var array<string, float>
|
|
*/
|
|
public $dupe_times;
|
|
}
|
|
|