wenpai.org/wp-content/plugins/query-monitor/classes/Component.php
2024-06-21 23:57:39 +08:00

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