Home
last modified time | relevance | path

Searched refs:StreamInterface (Results 1 – 25 of 56) sorted by path

123

/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md446 * `GuzzleHttp\Stream\StreamInterface::getContents()` no longer accepts a
759 * Added `Guzzle\Stream\StreamInterface::isRepeatable`
1044 * Added setStream to StreamInterface to actually make it possible to implement custom rewind behavi…
1145 * Added a StreamInterface, EntityBodyInterface, and added ftell() to Guzzle\Common\Stream
H A DUPGRADING.md483 `GuzzleHttp\Stream\StreamInterface`. Creating a new body for a request no
488 - `Guzzle\Http\EntityBodyInterface` is now `GuzzleHttp\Stream\StreamInterface`
513 - `curl.callback.progress` has been removed. Use a custom `StreamInterface` to
515 - `curl.callback.write` has been removed. Use a custom `StreamInterface` to
517 - `curl.callback.read` has been removed. Use a custom `StreamInterface` to
632 `Guzzle\Stream\StreamInterface` has been given a large update to cleanly take
638 ## Removed methods from StreamInterface
660 `GuzzleHttp\Stream\StreamInterface::getMetadata` and
661 `GuzzleHttp\Stream\StreamInterface::setMetadata` have been removed.
667 (instead of getting back a Response, you got a StreamInterface). Streaming
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Exception/
H A DSeekException.php4 use Psr\Http\Message\StreamInterface; alias
13 public function __construct(StreamInterface $stream, $pos = 0, $msg = '')
21 * @return StreamInterface
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
H A DEasyHandle.php7 use Psr\Http\Message\StreamInterface; alias
19 /** @var StreamInterface Where data is being written */
H A DMockHandler.php111 } elseif ($sink instanceof \Psr\Http\Message\StreamInterface) {
H A DStreamHandler.php13 use Psr\Http\Message\StreamInterface; alias
142 private function createSink(StreamInterface $stream, array $options)
194 * @param StreamInterface $source
195 * @param StreamInterface $sink
199 * @return StreamInterface
203 StreamInterface $source,
204 StreamInterface $sink,
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md231 implement `Psr\Http\Message\StreamInterface` by proxying to an underlying
240 use Psr\Http\Message\StreamInterface;
243 class EofCallbackStream implements StreamInterface
249 public function __construct(StreamInterface $stream, callable $cb)
424 `public static function copyToStream(StreamInterface $source, StreamInterface $dest, int $maxLen = …
432 `public static function copyToString(StreamInterface $stream, int $maxLen = -1): string`
440 `public static function hash(StreamInterface $stream, string $algo, bool $rawOutput = false): strin…
468 `public static function readLine(StreamInterface $stream, int $maxLength = null): string`
475 …urce|string|null|int|float|bool|StreamInterface|callable|\Iterator $resource = '', array $options …
486 - `Psr\Http\Message\StreamInterface`: Returns the value as-is.
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DAppendStream.php5 use Psr\Http\Message\StreamInterface; alias
14 class AppendStream implements StreamInterface
16 /** @var StreamInterface[] Streams being decorated */
24 * @param StreamInterface[] $streams Streams to decorate. Each stream must
47 * @param StreamInterface $stream Stream to append. Must be readable.
51 public function addStream(StreamInterface $stream)
H A DBufferStream.php5 use Psr\Http\Message\StreamInterface; alias
17 class BufferStream implements StreamInterface
H A DCachingStream.php5 use Psr\Http\Message\StreamInterface; alias
13 class CachingStream implements StreamInterface
17 /** @var StreamInterface Stream being wrapped */
26 …* @param StreamInterface $stream Stream to cache. The cursor is assumed to be at the beginning of …
27 * @param StreamInterface $target Optionally specify where data is cached
30 StreamInterface $stream,
31 StreamInterface $target = null
H A DDroppingStream.php5 use Psr\Http\Message\StreamInterface; alias
13 class DroppingStream implements StreamInterface
20 * @param StreamInterface $stream Underlying stream to decorate.
23 public function __construct(StreamInterface $stream, $maxLength)
H A DFnStream.php5 use Psr\Http\Message\StreamInterface; alias
15 class FnStream implements StreamInterface
73 * @param StreamInterface $stream Stream to decorate
78 public static function decorate(StreamInterface $stream, array $methods)
H A DInflateStream.php5 use Psr\Http\Message\StreamInterface; alias
20 class InflateStream implements StreamInterface
24 public function __construct(StreamInterface $stream)
37 * @param StreamInterface $stream
42 private function getLengthOfPossibleFilenameHeader(StreamInterface $stream, $header)
H A DLazyOpenStream.php5 use Psr\Http\Message\StreamInterface; alias
13 class LazyOpenStream implements StreamInterface
36 * @return StreamInterface
H A DLimitStream.php5 use Psr\Http\Message\StreamInterface; alias
12 class LimitStream implements StreamInterface
23 * @param StreamInterface $stream Stream to wrap
30 StreamInterface $stream,
H A DMessageTrait.php5 use Psr\Http\Message\StreamInterface; alias
21 /** @var StreamInterface|null */
127 public function withBody(StreamInterface $body)
H A DMultipartStream.php5 use Psr\Http\Message\StreamInterface; alias
13 class MultipartStream implements StreamInterface
114 private function createElement($name, StreamInterface $stream, $filename, array $headers)
H A DNoSeekStream.php5 use Psr\Http\Message\StreamInterface; alias
12 class NoSeekStream implements StreamInterface
H A DPumpStream.php5 use Psr\Http\Message\StreamInterface; alias
19 class PumpStream implements StreamInterface
H A DRequest.php7 use Psr\Http\Message\StreamInterface; alias
30 * @param string|resource|StreamInterface|null $body Request body
H A DResponse.php6 use Psr\Http\Message\StreamInterface; alias
86 * @param string|resource|StreamInterface|null $body Response body
H A DServerRequest.php7 use Psr\Http\Message\StreamInterface; alias
61 * @param string|resource|StreamInterface|null $body Request body
H A DStream.php5 use Psr\Http\Message\StreamInterface; alias
12 class Stream implements StreamInterface
H A DStreamDecoratorTrait.php5 use Psr\Http\Message\StreamInterface; alias
10 * @property StreamInterface stream
15 * @param StreamInterface $stream Stream to decorate
17 public function __construct(StreamInterface $stream)
28 * @return StreamInterface
144 * @return StreamInterface
H A DStreamWrapper.php5 use Psr\Http\Message\StreamInterface; alias
17 /** @var StreamInterface */
26 * @param StreamInterface $stream The stream to get a resource for
32 public static function getResource(StreamInterface $stream)
51 * @param StreamInterface $stream
55 public static function createStreamContext(StreamInterface $stream)

123