📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 15:05:00
📂
/ (Root)
/
home
/
apkbfjox
/
.trash
/
wordpress-seo
/
vendor_prefixed
/
guzzlehttp
/
guzzle
/
src
📍 /home/apkbfjox/.trash/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src
🔄 Refresh
✏️
Editing: BodySummarizer.php
Writable
<?php namespace YoastSEO_Vendor\GuzzleHttp; use YoastSEO_Vendor\Psr\Http\Message\MessageInterface; final class BodySummarizer implements \YoastSEO_Vendor\GuzzleHttp\BodySummarizerInterface { /** * @var int|null */ private $truncateAt; public function __construct(int $truncateAt = null) { $this->truncateAt = $truncateAt; } /** * Returns a summarized message body. */ public function summarize(\YoastSEO_Vendor\Psr\Http\Message\MessageInterface $message) : ?string { return $this->truncateAt === null ? \YoastSEO_Vendor\GuzzleHttp\Psr7\Message::bodySummary($message) : \YoastSEO_Vendor\GuzzleHttp\Psr7\Message::bodySummary($message, $this->truncateAt); } }
💾 Save Changes
❌ Cancel