/var/www/html_it/wp-content/plugins/query-monitor/data/db_callers.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php declare(strict_types 1);
/**
 * Database query callers data transfer object.
 *
 * @package query-monitor
 */

class QM_Data_DB_Callers extends QM_Data {
    
/**
     * @var array<string, array<string, mixed>>
     * @phpstan-var array<string, array{
     *   caller: string,
     *   ltime: float,
     *   types: array<string, int>,
     * }>
     */
    
public $times = array();
}