Home
last modified time | relevance | path

Searched refs:StreamInterface (Results 1 – 25 of 90) sorted by relevance

1234

/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
Dfunctions.php7 use Psr\Http\Message\StreamInterface; alias
73 …* @param resource|string|int|float|bool|StreamInterface|callable|\Iterator|null $resource Entity b…
76 * @return StreamInterface
187 * @param StreamInterface $stream Stream to read
197 function copy_to_string(StreamInterface $stream, $maxLen = -1)
206 * @param StreamInterface $source Stream to read from
207 * @param StreamInterface $dest Stream to write to
215 function copy_to_stream(StreamInterface $source, StreamInterface $dest, $maxLen = -1)
226 * @param StreamInterface $stream Stream to calculate the hash for
236 function hash(StreamInterface $stream, $algo, $rawOutput = false)
[all …]
DUtils.php7 use Psr\Http\Message\StreamInterface; alias
40 * @param StreamInterface $source Stream to read from
41 * @param StreamInterface $dest Stream to write to
47 … public static function copyToStream(StreamInterface $source, StreamInterface $dest, $maxLen = -1)
75 * @param StreamInterface $stream Stream to read
83 public static function copyToString(StreamInterface $stream, $maxLen = -1)
119 * @param StreamInterface $stream Stream to calculate the hash for
127 public static function hash(StreamInterface $stream, $algo, $rawOutput = false)
242 * @param StreamInterface $stream Stream to read from
247 public static function readLine(StreamInterface $stream, $maxLength = null)
[all …]
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)
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)
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
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
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)
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)
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
DUtils.php51 * @param StreamInterface $stream Stream to read
56 public static function copyToString(StreamInterface $stream, $maxLen = -1)
88 * @param StreamInterface $source Stream to read from
89 * @param StreamInterface $dest Stream to write to
94 StreamInterface $source,
95 StreamInterface $dest,
124 * @param StreamInterface $stream Stream to calculate the hash for
132 StreamInterface $stream,
156 * @param StreamInterface $stream Stream to read from
162 public static function readline(StreamInterface $stream, $maxLength = null, $eol = PHP_EOL)
[all …]
DCachingStream.php10 class CachingStream implements StreamInterface
14 /** @var StreamInterface Stream being wrapped */
23 * @param StreamInterface $stream Stream to cache
24 * @param StreamInterface $target Optionally specify where data is cached
27 StreamInterface $stream,
28 StreamInterface $target = null
/plugin/matrixnotifierwas/vendor/psr/http-factory/src/
DStreamFactoryInterface.php14 * @return StreamInterface
16 public function createStream(string $content = ''): StreamInterface;
29 * @return StreamInterface
33 public function createStreamFromFile(string $filename, string $mode = 'r'): StreamInterface;
42 * @return StreamInterface
44 public function createStreamFromResource($resource): StreamInterface;
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DUtils.php9 use Psr\Http\Message\StreamInterface; alias
40 * @param StreamInterface $source Stream to read from
41 * @param StreamInterface $dest Stream to write to
47 …public static function copyToStream(StreamInterface $source, StreamInterface $dest, int $maxLen = …
75 * @param StreamInterface $stream Stream to read
81 public static function copyToString(StreamInterface $stream, int $maxLen = -1): string
116 * @param StreamInterface $stream Stream to calculate the hash for
122 …public static function hash(StreamInterface $stream, string $algo, bool $rawOutput = false): string
231 * @param StreamInterface $stream Stream to read from
234 public static function readLine(StreamInterface $stream, int $maxLength = null): string
[all …]
DCachingStream.php7 use Psr\Http\Message\StreamInterface; alias
13 final class CachingStream implements StreamInterface
17 /** @var StreamInterface Stream being wrapped */
24 * @var StreamInterface
31 …* @param StreamInterface $stream Stream to cache. The cursor is assumed to be at the beginning of …
32 * @param StreamInterface $target Optionally specify where data is cached
35 StreamInterface $stream,
36 StreamInterface $target = null
DDroppingStream.php7 use Psr\Http\Message\StreamInterface; alias
13 final class DroppingStream implements StreamInterface
20 /** @var StreamInterface */
24 * @param StreamInterface $stream Underlying stream to decorate.
27 public function __construct(StreamInterface $stream, int $maxLength)
DUploadedFile.php8 use Psr\Http\Message\StreamInterface; alias
56 * @var StreamInterface|null
61 * @param StreamInterface|string|resource $streamOrFile
83 * @param StreamInterface|string|resource $streamOrFile
93 } elseif ($streamOrFile instanceof StreamInterface) {
148 public function getStream(): StreamInterface
152 if ($this->stream instanceof StreamInterface) {
DInflateStream.php7 use Psr\Http\Message\StreamInterface; alias
20 final class InflateStream implements StreamInterface
24 /** @var StreamInterface */
27 public function __construct(StreamInterface $stream)
DStreamDecoratorTrait.php7 use Psr\Http\Message\StreamInterface; alias
12 * @property StreamInterface $stream
17 * @param StreamInterface $stream Stream to decorate
19 public function __construct(StreamInterface $stream)
28 * @return StreamInterface
152 protected function createStream(): StreamInterface
DLazyOpenStream.php7 use Psr\Http\Message\StreamInterface; alias
13 final class LazyOpenStream implements StreamInterface
24 * @var StreamInterface
45 protected function createStream(): StreamInterface
DStreamWrapper.php7 use Psr\Http\Message\StreamInterface; alias
19 /** @var StreamInterface */
28 * @param StreamInterface $stream The stream to get a resource for
34 public static function getResource(StreamInterface $stream)
55 public static function createStreamContext(StreamInterface $stream)
DHttpFactory.php14 use Psr\Http\Message\StreamInterface; alias
29 StreamInterface $stream,
42 public function createStream(string $content = ''): StreamInterface
47 public function createStreamFromFile(string $file, string $mode = 'r'): StreamInterface
62 public function createStreamFromResource($resource): StreamInterface
DNoSeekStream.php7 use Psr\Http\Message\StreamInterface; alias
12 final class NoSeekStream implements StreamInterface
16 /** @var StreamInterface */
DAppendStream.php7 use Psr\Http\Message\StreamInterface; alias
14 final class AppendStream implements StreamInterface
16 /** @var StreamInterface[] Streams being decorated */
29 * @param StreamInterface[] $streams Streams to decorate. Each stream must
58 * @param StreamInterface $stream Stream to append. Must be readable.
62 public function addStream(StreamInterface $stream): void
/plugin/matrixnotifierwas/vendor/psr/http-message/src/
DMessageInterface.php169 * @return StreamInterface Returns the body as a stream.
171 public function getBody(): StreamInterface;
182 * @param StreamInterface $body Body.
186 public function withBody(StreamInterface $body): MessageInterface;
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/Exception/
DSeekException.php4 use GuzzleHttp\Stream\StreamInterface; alias
13 public function __construct(StreamInterface $stream, $pos = 0, $msg = '')
21 * @return StreamInterface
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Exception/
DSeekException.php4 use Psr\Http\Message\StreamInterface; alias
13 public function __construct(StreamInterface $stream, $pos = 0, $msg = '')
21 * @return StreamInterface

1234