Home
last modified time | relevance | path

Searched refs:LazyOpenStream (Results 1 – 17 of 17) sorted by relevance

/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
DLazyOpenStreamTest.php4 use GuzzleHttp\Stream\LazyOpenStream; alias
29 $l = new LazyOpenStream($this->fname, 'w+');
40 $l = new LazyOpenStream($this->fname, 'r');
58 $l = new LazyOpenStream($this->fname, 'r');
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DUploadedFile.php159 return new LazyOpenStream($file, 'r+');
179 new LazyOpenStream($targetPath, 'w')
DLazyOpenStream.php13 final class LazyOpenStream implements StreamInterface class
DServerRequest.php171 $body = new CachingStream(new LazyOpenStream('php://input', 'r+'));
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
DLazyOpenStream.php8 class LazyOpenStream implements StreamInterface class
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
DUploadedFile.php242 return new LazyOpenStream($this->file, 'r+');
275 new LazyOpenStream($targetPath, 'w')
DLazyOpenStream.php13 class LazyOpenStream implements StreamInterface class
DServerRequest.php175 $body = new CachingStream(new LazyOpenStream('php://input', 'r+'));
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/
DCHANGELOG.rst66 * LazyOpenStream now correctly returns the underlying stream resource when
78 * Added a LazyOpenStream
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/
DCurlFactory.php7 use GuzzleHttp\Stream\LazyOpenStream; alias
405 $value = new LazyOpenStream($value, 'w+');
/plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/Handler/
DCurlFactory.php10 use GuzzleHttp\Psr7\LazyOpenStream; alias
410 $sink = new LazyOpenStream($sink, 'w+');
DStreamHandler.php156 … return \is_string($sink) ? new Psr7\LazyOpenStream($sink, 'w+') : Psr7\Utils::streamFor($sink);
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/
DCurlFactory.php8 use GuzzleHttp\Psr7\LazyOpenStream; alias
391 $sink = new LazyOpenStream($sink, 'w+');
DStreamHandler.php153 ? new Psr7\LazyOpenStream($sink, 'w+')
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
DREADME.md141 ## LazyOpenStream section in Stream implementation
143 `GuzzleHttp\Psr7\LazyOpenStream`
151 $stream = new Psr7\LazyOpenStream('/path/to/file', 'r');
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/
DREADME.md154 ## LazyOpenStream section in PSR-7 Message Implementation
156 `GuzzleHttp\Psr7\LazyOpenStream`
164 $stream = new Psr7\LazyOpenStream('/path/to/file', 'r');
DCHANGELOG.md60 - Removed the need for `AllowDynamicProperties` in `LazyOpenStream`