first
This commit is contained in:
23
wp-content/plugins/query-monitor/classes/Component.php
Normal file
23
wp-content/plugins/query-monitor/classes/Component.php
Normal file
@ -0,0 +1,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;
|
||||
}
|
Reference in New Issue
Block a user