| Server IP : 104.21.21.239 / Your IP : 216.73.217.74 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/connectionsdev/vendor/mpdf/mpdf/src/ |
Upload File : |
<?php
namespace Mpdf;
class PageBox implements \ArrayAccess
{
private $container = [];
public function __construct()
{
$this->container = [
'current' => null,
'outer_width_LR' => null,
'outer_width_TB' => null,
'using' => null,
];
}
#[\ReturnTypeWillChange]
public function offsetSet($offset, $value)
{
if (!$this->offsetExists($offset)) {
throw new \Mpdf\MpdfException('Invalid key to set for PageBox');
}
$this->container[$offset] = $value;
}
#[\ReturnTypeWillChange]
public function offsetExists($offset)
{
return array_key_exists($offset, $this->container);
}
#[\ReturnTypeWillChange]
public function offsetUnset($offset)
{
if (!$this->offsetExists($offset)) {
throw new \Mpdf\MpdfException('Invalid key to set for PageBox');
}
$this->container[$offset] = null;
}
#[\ReturnTypeWillChange]
public function offsetGet($offset)
{
if (!$this->offsetExists($offset)) {
throw new \Mpdf\MpdfException('Invalid key to set for PageBox');
}
return $this->container[$offset];
}
}