OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
Xpress_backup
/
vendor
/
aws
/
aws-sdk-php
/
src
/
Handler
/
GuzzleV5
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
01/06/2025 08:31:03 AM
rwxr-xr-x
📄
GuzzleHandler.php
6.83 KB
05/19/2025 10:07:19 AM
rw-r--r--
📄
GuzzleStream.php
565 bytes
05/19/2025 10:07:19 AM
rw-r--r--
📄
PsrStream.php
740 bytes
05/19/2025 10:07:19 AM
rw-r--r--
Editing: GuzzleStream.php
Close
<?php namespace Aws\Handler\GuzzleV5; use GuzzleHttp\Stream\StreamDecoratorTrait; use GuzzleHttp\Stream\StreamInterface as GuzzleStreamInterface; use Psr\Http\Message\StreamInterface as Psr7StreamInterface; /** * Adapts a PSR-7 Stream to a Guzzle 5 Stream. * * @codeCoverageIgnore */ class GuzzleStream implements GuzzleStreamInterface { use StreamDecoratorTrait; /** @var Psr7StreamInterface */ private $stream; public function __construct(Psr7StreamInterface $stream) { $this->stream = $stream; } }