OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
reader
/
znew1aws-ses
/
vendor
/
guzzlehttp
/
guzzle
/
src
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:15 AM
rwxr-xr-x
📄
BodySummarizer.php
659 bytes
05/19/2025 10:07:15 AM
rw-r--r--
📄
BodySummarizerInterface.php
246 bytes
05/19/2025 10:07:15 AM
rw-r--r--
📄
Client.php
18.49 KB
05/19/2025 10:07:15 AM
rw-r--r--
📄
ClientInterface.php
2.91 KB
05/19/2025 10:07:15 AM
rw-r--r--
📄
ClientTrait.php
9.03 KB
05/19/2025 10:07:15 AM
rw-r--r--
📁
Cookie
-
05/19/2025 10:07:15 AM
rwxr-xr-x
📁
Exception
-
05/19/2025 10:07:15 AM
rwxr-xr-x
📁
Handler
-
05/19/2025 10:07:15 AM
rwxr-xr-x
📄
HandlerStack.php
8.77 KB
05/19/2025 10:07:15 AM
rw-r--r--
📄
MessageFormatter.php
7.81 KB
05/19/2025 10:07:15 AM
rw-r--r--
📄
MessageFormatterInterface.php
577 bytes
05/19/2025 10:07:15 AM
rw-r--r--
📄
Middleware.php
11.16 KB
05/19/2025 10:07:15 AM
rw-r--r--
📄
Pool.php
4.73 KB
05/19/2025 10:07:15 AM
rw-r--r--
📄
PrepareBodyMiddleware.php
3.18 KB
05/19/2025 10:07:15 AM
rw-r--r--
📄
RedirectMiddleware.php
8.14 KB
05/19/2025 10:07:15 AM
rw-r--r--
📄
RequestOptions.php
10.98 KB
05/19/2025 10:07:15 AM
rw-r--r--
📄
RetryMiddleware.php
3.64 KB
05/19/2025 10:07:15 AM
rw-r--r--
📄
TransferStats.php
3.23 KB
05/19/2025 10:07:15 AM
rw-r--r--
📄
Utils.php
13.15 KB
05/19/2025 10:07:15 AM
rw-r--r--
📄
functions.php
5.72 KB
05/19/2025 10:07:15 AM
rw-r--r--
📄
functions_include.php
166 bytes
05/19/2025 10:07:15 AM
rw-r--r--
Editing: BodySummarizer.php
Close
<?php namespace GuzzleHttp; use Psr\Http\Message\MessageInterface; final class BodySummarizer implements BodySummarizerInterface { /** * @var int|null */ private $truncateAt; public function __construct(int $truncateAt = null) { $this->truncateAt = $truncateAt; } /** * Returns a summarized message body. */ public function summarize(MessageInterface $message): ?string { return $this->truncateAt === null ? \GuzzleHttp\Psr7\Message::bodySummary($message) : \GuzzleHttp\Psr7\Message::bodySummary($message, $this->truncateAt); } }