wp_back/wp-content/plugins/query-monitor/data/doing_it_wrong.php
2024-05-20 15:37:46 +03:00

20 lines
396 B
PHP

<?php declare(strict_types = 1);
/**
* Doing it Wrong data transfer object.
*
* @package query-monitor
*/
class QM_Data_Doing_It_Wrong extends QM_Data {
/**
* @var array<int, array<string, mixed>>
* @phpstan-var array<int, array{
* hook: string,
* filtered_trace: list<array<string, mixed>>,
* message: string,
* component: QM_Component,
* }>
*/
public $actions;
}