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

24 lines
257 B
PHP

<?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;
}