first
This commit is contained in:
18
wp-content/plugins/query-monitor/data/db_components.php
Normal file
18
wp-content/plugins/query-monitor/data/db_components.php
Normal file
@ -0,0 +1,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;
|
||||
}
|
Reference in New Issue
Block a user