/var/www/html_it/wp-content/plugins/query-monitor/data/caps.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php declare(strict_types 1);
/**
 * Cache data transfer object.
 *
 * @package query-monitor
 */

class QM_Data_Caps extends QM_Data {
    
/**
     * @var array<int, array<string, mixed>>
     * @phpstan-var list<array{
     *   args: list<mixed>,
     *   filtered_trace: list<array<string, mixed>>,
     *   component: QM_Component,
     *   result: bool,
     *   parts: list<string>,
     *   name: string,
     *   user: string,
     * }>
     */
    
public $caps;

    
/**
     * @var array<int, string>
     */
    
public $parts;

    
/**
     * @var array<int, int>
     */
    
public $users;

    
/**
     * @var array<string, string>
     */
    
public $components;
}