| Server IP : 13.126.101.145 / Your IP : 216.73.217.87 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ip-11-115-0-196 6.8.0-1039-aws #41~22.04.1-Ubuntu SMP Thu Sep 11 10:54:48 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.3.17 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/rentals_updated/wp-content/plugins/query-monitor/data/ |
Upload File : |
<?php declare(strict_types = 1);
/**
* Overview data transfer object.
*
* @package query-monitor
*/
class QM_Data_Overview extends QM_Data {
/**
* @var ?float
*/
public $time_taken;
/**
* @var int
*/
public $time_limit;
/**
* @var float
*/
public $time_start;
/**
* @var int|float
*/
public $time_usage;
/**
* @var int
*/
public $memory;
/**
* @var float
*/
public $memory_limit;
/**
* @var int|float
*/
public $memory_usage;
/**
* @var ?array<string, mixed>
*/
public $current_user;
/**
* @var ?array<string, mixed>
*/
public $switched_user;
/**
* @var bool
*/
public $display_time_usage_warning;
/**
* @var bool
*/
public $display_memory_usage_warning;
/**
* @var bool
*/
public $is_admin;
}