| Linux hosting5.siteguarding.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64 Path : /home/devsafetybis/op4103.dev.safetybis.com/system/engine/ |
| Current File : /home/devsafetybis/op4103.dev.safetybis.com/system/engine/proxy.php |
<?php
/**
* @package OpenCart
*
* @author Daniel Kerr
* @copyright Copyright (c) 2005 - 2022, OpenCart, Ltd. (https://www.opencart.com/)
* @license https://opensource.org/licenses/GPL-3.0
*
* @see https://www.opencart.com
*/
namespace Opencart\System\Engine;
/**
* Class Proxy
*
* @template TWraps of \Opencart\System\Engine\Model
*
* @mixin TWraps
*/
class Proxy {
/**
* @var array<string, object>
*/
protected array $data = [];
/**
* __get
*
* @param string $key
*
* @return mixed
*/
public function &__get(string $key) {
if (isset($this->data[$key])) {
return $this->data[$key];
} else {
throw new \Exception('Error: Could not call proxy key ' . $key . '!');
}
}
/**
* __set
*
* @param string $key
* @param object $value
*
* @return void
*/
public function __set(string $key, object $value): void {
$this->data[$key] = $value;
}
/**
* __isset
*
* @param string $key
*
* @return bool
*/
public function __isset(string $key): bool {
return isset($this->data[$key]);
}
/**
* __unset
*
* @param string $key
*
* @return void
*/
public function __unset(string $key): void {
unset($this->data[$key]);
}
/**
* __call
*
* @param string $method
* @param array<string, mixed> $args
*
* @return mixed
*/
public function __call(string $method, array $args) {
// Hack for pass-by-reference
foreach ($args as $key => &$value);
if (isset($this->data[$method])) {
return ($this->data[$method])(...$args);
} else {
$trace = debug_backtrace();
throw new \Exception('<b>Notice</b>: Undefined property: Proxy::' . $method . ' in <b>' . $trace[0]['file'] . '</b> on line <b>' . $trace[0]['line'] . '</b>');
}
}
}