/var/www/html_it/wp-content/plugins/query-monitor/data/db_components.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 components data transfer object.
 *
 * @package query-monitor
 */

class QM_Data_DB_Components extends QM_Data {
    
/**
     * @var array<string, array<string, mixed>>
     * @phpstan-var array<string, array{
     *   ltime: float,
     *   types: array<string, int>,
     *   component: string,
     * }>
     */
    
public $times;
}