/var/www/html_de/wp-content/plugins/query-monitor/classes/Component.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php declare(strict_types 1);
/**
 * Class representing a component.
 *
 * @package query-monitor
 */

class QM_Component {
    
/**
     * @var string
     */
    
public $type;

    
/**
     * @var string
     */
    
public $name;

    
/**
     * @var string
     */
    
public $context;
}