Searched refs:LazyOpenStream (Results 1 – 17 of 17) sorted by relevance
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/ |
D | LazyOpenStreamTest.php | 4 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/ |
D | UploadedFile.php | 159 return new LazyOpenStream($file, 'r+'); 179 new LazyOpenStream($targetPath, 'w')
|
D | LazyOpenStream.php | 13 final class LazyOpenStream implements StreamInterface class
|
D | ServerRequest.php | 171 $body = new CachingStream(new LazyOpenStream('php://input', 'r+'));
|
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/ |
D | LazyOpenStream.php | 8 class LazyOpenStream implements StreamInterface class
|
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/ |
D | UploadedFile.php | 242 return new LazyOpenStream($this->file, 'r+'); 275 new LazyOpenStream($targetPath, 'w')
|
D | LazyOpenStream.php | 13 class LazyOpenStream implements StreamInterface class
|
D | ServerRequest.php | 175 $body = new CachingStream(new LazyOpenStream('php://input', 'r+'));
|
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/ |
D | CHANGELOG.rst | 66 * LazyOpenStream now correctly returns the underlying stream resource when 78 * Added a LazyOpenStream
|
/plugin/elasticsearch/vendor/ezimuel/ringphp/src/Client/ |
D | CurlFactory.php | 7 use GuzzleHttp\Stream\LazyOpenStream; alias 405 $value = new LazyOpenStream($value, 'w+');
|
/plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/Handler/ |
D | CurlFactory.php | 10 use GuzzleHttp\Psr7\LazyOpenStream; alias 410 $sink = new LazyOpenStream($sink, 'w+');
|
D | StreamHandler.php | 156 … return \is_string($sink) ? new Psr7\LazyOpenStream($sink, 'w+') : Psr7\Utils::streamFor($sink);
|
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/Handler/ |
D | CurlFactory.php | 8 use GuzzleHttp\Psr7\LazyOpenStream; alias 391 $sink = new LazyOpenStream($sink, 'w+');
|
D | StreamHandler.php | 153 ? new Psr7\LazyOpenStream($sink, 'w+')
|
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/ |
D | README.md | 141 ## LazyOpenStream section in Stream implementation 143 `GuzzleHttp\Psr7\LazyOpenStream` 151 $stream = new Psr7\LazyOpenStream('/path/to/file', 'r');
|
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/ |
D | README.md | 154 ## LazyOpenStream section in PSR-7 Message Implementation 156 `GuzzleHttp\Psr7\LazyOpenStream` 164 $stream = new Psr7\LazyOpenStream('/path/to/file', 'r');
|
D | CHANGELOG.md | 60 - Removed the need for `AllowDynamicProperties` in `LazyOpenStream`
|