You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
396 B
25 lines
396 B
<?php declare(strict_types = 1);
|
|
/**
|
|
* Abstract data collector for structured data.
|
|
*
|
|
* @package query-monitor
|
|
*/
|
|
|
|
/**
|
|
* @phpstan-template T of QM_Data
|
|
*/
|
|
abstract class QM_DataCollector extends QM_Collector {
|
|
/**
|
|
* @var QM_Data
|
|
* @phpstan-var T
|
|
*/
|
|
protected $data;
|
|
|
|
/**
|
|
* @return QM_Data
|
|
* @phpstan-return T
|
|
*/
|
|
final public function get_data() {
|
|
return $this->data;
|
|
}
|
|
}
|
|
|