OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
zzXpress
/
vendor
/
guzzlehttp
/
guzzle
/
tests
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:22 AM
rwxr-xr-x
📄
ClientTest.php
31.28 KB
05/19/2025 10:07:22 AM
rw-r--r--
📁
Cookie
-
05/19/2025 10:07:22 AM
rwxr-xr-x
📁
Exception
-
05/19/2025 10:07:22 AM
rwxr-xr-x
📁
Handler
-
05/19/2025 10:07:22 AM
rwxr-xr-x
📄
HandlerStackTest.php
7.43 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
Helpers.php
975 bytes
05/19/2025 10:07:22 AM
rw-r--r--
📄
HttplugIntegrationTest.php
369 bytes
05/19/2025 10:07:22 AM
rw-r--r--
📄
InternalUtilsTest.php
569 bytes
05/19/2025 10:07:22 AM
rw-r--r--
📄
MessageFormatterTest.php
4.11 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
MiddlewareTest.php
9.88 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
PoolTest.php
6.42 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
PrepareBodyMiddlewareTest.php
5.36 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
RedirectMiddlewareTest.php
20.48 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
RetryMiddlewareTest.php
3.01 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
Server.php
6.12 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
TestLogger.php
2.77 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
TransferStatsTest.php
995 bytes
05/19/2025 10:07:22 AM
rw-r--r--
📄
UtilsTest.php
5.48 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
bootstrap-phpstan.php
173 bytes
05/19/2025 10:07:22 AM
rw-r--r--
📄
bootstrap.php
1.05 KB
05/19/2025 10:07:22 AM
rw-r--r--
📄
server.js
8.12 KB
01/07/2025 11:32:05 AM
rw-r--r--
Editing: Helpers.php
Close
<?php namespace GuzzleHttp\Tests; class Helpers { public static function readObjectAttribute(object $object, string $attributeName) { $reflector = new \ReflectionObject($object); do { try { $attribute = $reflector->getProperty($attributeName); if (!$attribute || $attribute->isPublic()) { return $object->$attributeName; } $attribute->setAccessible(true); try { return $attribute->getValue($object); } finally { $attribute->setAccessible(false); } } catch (\ReflectionException $e) { // do nothing } } while ($reflector = $reflector->getParentClass()); throw new \Exception( sprintf('Attribute "%s" not found in object.', $attributeName) ); } }