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.
18 lines
332 B
18 lines
332 B
<?php declare(strict_types = 1);
|
|
/**
|
|
* Conditionals data transfer object.
|
|
*
|
|
* @package query-monitor
|
|
*/
|
|
|
|
class QM_Data_Conditionals extends QM_Data {
|
|
/**
|
|
* @var array<string, array<int, string>>
|
|
* @phpstan-var array{
|
|
* true: list<string>,
|
|
* false: list<string>,
|
|
* na: list<string>,
|
|
* }
|
|
*/
|
|
public $conds;
|
|
}
|
|
|