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.
 
 
 
 
 

18 lines
365 B

<?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();
}