/
home
/
techb158
/
ileadtechnology.com
/
vendor
/
aws
/
aws-sdk-php
/
src
/
Handler
/
GuzzleV5
/
/home/techb158/ileadtechnology.com/vendor/aws/aws-sdk-php/src/Handler/GuzzleV5
mkdir
upload
Name
Size
Mode
Actions
GuzzleHandler.php
6786
0644
edit
dl
rm
GuzzleStream.php
541
0644
edit
dl
rm
PsrStream.php
706
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/vendor/aws/aws-sdk-php/src/Handler/GuzzleV5/GuzzleStream.php
(541B)
<?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; } }
Save
stream = $stream; } }