OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
quiz
/
assets
/
payment
/
vendor
/
rmccue
/
requests
/
tests
/
Fixtures
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:16 AM
rwxr-xr-x
📄
ArrayAccessibleObject.php
543 bytes
05/19/2025 10:07:16 AM
rw-r--r--
📄
RawTransportMock.php
677 bytes
05/19/2025 10:07:16 AM
rw-r--r--
📄
StringableObject.php
250 bytes
05/19/2025 10:07:16 AM
rw-r--r--
📄
TestTransportMock.php
546 bytes
05/19/2025 10:07:16 AM
rw-r--r--
📄
TransportMock.php
3.18 KB
05/19/2025 10:07:16 AM
rw-r--r--
Editing: ArrayAccessibleObject.php
Close
<?php namespace WpOrg\Requests\Tests\Fixtures; use ArrayAccess; use ReturnTypeWillChange; final class ArrayAccessibleObject implements ArrayAccess { private $value; public function __construct($value = []) { $this->value = $value; } #[ReturnTypeWillChange] public function offsetExists($offset) {} #[ReturnTypeWillChange] public function offsetGet($offset) {} #[ReturnTypeWillChange] public function offsetSet($offset, $value) {} #[ReturnTypeWillChange] public function offsetUnset($offset) {} }