- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
39 lines
571 B
PHP
Executable File
39 lines
571 B
PHP
Executable File
<?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;
|
|
}
|