- 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>
31 lines
546 B
PHP
Executable File
31 lines
546 B
PHP
Executable File
<?php declare(strict_types = 1);
|
|
/**
|
|
* Logger data transfer object.
|
|
*
|
|
* @package query-monitor
|
|
*/
|
|
|
|
class QM_Data_Logger extends QM_Data {
|
|
/**
|
|
* @var array<string, int>
|
|
* @phpstan-var array<QM_Collector_Logger::*, int>
|
|
*/
|
|
public $counts;
|
|
|
|
/**
|
|
* @var array<int, array<string, mixed>>
|
|
* @phpstan-var list<array{
|
|
* message: string,
|
|
* filtered_trace: mixed[],
|
|
* component: QM_Component,
|
|
* level: QM_Collector_Logger::*,
|
|
* }>
|
|
*/
|
|
public $logs;
|
|
|
|
/**
|
|
* @var array<string, QM_Component>
|
|
*/
|
|
public $components;
|
|
}
|