/var/www/html_sp/wp-content/plugins/query-monitor/data/db_dupes.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?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;
}