| Server IP : 104.21.21.239 / Your IP : 216.73.216.11 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/tgnew/wp-content/plugins/query-monitor/classes/ |
Upload File : |
<?php declare(strict_types = 1);
/**
* Abstract data transfer object.
*/
/**
* @implements ArrayAccess<string,mixed>
*/
#[AllowDynamicProperties]
abstract class QM_Data implements \ArrayAccess {
/**
* @var array<string, mixed>
*/
public $types = array();
/**
* @var array<string, array<string, mixed>>
* @phpstan-var array<string, array{
* component: string,
* ltime: float,
* types: array<array-key, int>,
* }>
*/
public $component_times = array();
/**
* @param mixed $offset
* @param mixed $value
* @return void
*/
#[ReturnTypeWillChange]
final public function offsetSet( $offset, $value ) {
if ( is_string( $offset ) ) {
$this->$offset = $value;
}
}
/**
* @param mixed $offset
* @return bool
*/
#[ReturnTypeWillChange]
final public function offsetExists( $offset ) {
return is_string( $offset ) && isset( $this->$offset );
}
/**
* @param mixed $offset
* @return void
*/
#[ReturnTypeWillChange]
final public function offsetUnset( $offset ) {
// @TODO might be able to no-op this
if ( is_string( $offset ) ) {
unset( $this->$offset );
}
}
/**
* @param mixed $offset
* @return mixed
*/
#[ReturnTypeWillChange]
final public function offsetGet( $offset ) {
return ( is_string( $offset ) && isset( $this->$offset ) ) ? $this->$offset : null;
}
}