Home
last modified time | relevance | path

Searched refs:streamFor (Results 1 – 24 of 24) sorted by relevance

/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
DMultipartStream.php77 $stream->addStream(Utils::streamFor("--{$this->boundary}--\r\n"));
90 $element['contents'] = Utils::streamFor($element['contents']);
106 $stream->addStream(Utils::streamFor($this->getHeaders($headers)));
108 $stream->addStream(Utils::streamFor("\r\n"));
DLazyOpenStream.php40 return Utils::streamFor(Utils::tryFopen($this->filename, $this->mode));
DResponse.php104 $this->stream = Utils::streamFor($body);
DUtils.php303 public static function streamFor($resource = '', array $options = []) function in GuzzleHttp\\Psr7\\Utils
341 return Utils::streamFor((string) $resource, $options);
DRequest.php55 $this->stream = Utils::streamFor($body);
Dfunctions.php84 return Utils::streamFor($resource, $options);
DMessageTrait.php121 $this->stream = Utils::streamFor('');
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DMultipartStream.php81 $stream->addStream(Utils::streamFor("--{$this->boundary}--\r\n"));
94 $element['contents'] = Utils::streamFor($element['contents']);
110 $stream->addStream(Utils::streamFor($this->getHeaders($headers)));
112 $stream->addStream(Utils::streamFor("\r\n"));
DHttpFactory.php44 return Utils::streamFor($content);
59 return Utils::streamFor($resource);
64 return Utils::streamFor($resource);
DLazyOpenStream.php47 return Utils::streamFor(Utils::tryFopen($this->filename, $this->mode));
DResponse.php106 $this->stream = Utils::streamFor($body);
DUtils.php287 public static function streamFor($resource = '', array $options = []): StreamInterface function in GuzzleHttp\\Psr7\\Utils
330 return self::streamFor((string) $resource, $options);
DRequest.php57 $this->stream = Utils::streamFor($body);
DMessageTrait.php125 $this->stream = Utils::streamFor('');
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
DGuzzle.php131 $req = $req->withBody($this->streamFor($data));
201 private function streamFor($data): StreamInterface function in Elastica\\Transport\\Guzzle
208 ? Psr7\Utils::streamFor($data)
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
DREADME.md26 $a = Psr7\Utils::streamFor('abc, ');
27 $b = Psr7\Utils::streamFor('123.');
30 $composed->addStream(Psr7\Utils::streamFor(' Above all listen to me'));
68 $original = Psr7\Utils::streamFor(fopen('http://www.google.com', 'r'));
92 $stream = Psr7\Utils::streamFor();
115 $stream = Psr7\Utils::streamFor('hi');
170 $original = Psr7\Utils::streamFor(fopen('/tmp/test.txt', 'r+'));
200 $original = Psr7\Utils::streamFor('foo');
274 $original = Psr7\Utils::streamFor('foo');
300 $stream = GuzzleHttp\Psr7\Utils::streamFor('hello!');
[all …]
/plugin/authgooglesheets/vendor/google/apiclient/src/AccessToken/
DRevoke.php64 $body = Psr7\Utils::streamFor(http_build_query(array('token' => $token)));
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/
DREADME.md40 $a = Psr7\Utils::streamFor('abc, ');
41 $b = Psr7\Utils::streamFor('123.');
44 $composed->addStream(Psr7\Utils::streamFor(' Above all listen to me'));
82 $original = Psr7\Utils::streamFor(fopen('http://www.google.com', 'r'));
106 $stream = Psr7\Utils::streamFor();
129 $stream = Psr7\Utils::streamFor('hi');
183 $original = Psr7\Utils::streamFor(fopen('/tmp/test.txt', 'r+'));
213 $original = Psr7\Utils::streamFor('foo');
289 $original = Psr7\Utils::streamFor('foo');
315 $stream = GuzzleHttp\Psr7\Utils::streamFor('hello!');
[all …]
/plugin/authgooglesheets/vendor/google/apiclient/src/Http/
DMediaFileUpload.php144 Psr7\Utils::streamFor($chunk)
258 $request = $request->withBody(Psr7\Utils::streamFor($postBody));
DBatch.php177 Psr7\Utils::streamFor($partBody)
/plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/Handler/
DStreamHandler.php112 $stream = Psr7\Utils::streamFor($stream);
156 … return \is_string($sink) ? new Psr7\LazyOpenStream($sink, 'w+') : Psr7\Utils::streamFor($sink);
170 $stream = new Psr7\InflateStream(Psr7\Utils::streamFor($stream));
DCurlFactory.php405 $sink = \GuzzleHttp\Psr7\Utils::streamFor($sink);
/plugin/authgooglesheets/vendor/google/auth/src/
DAccessToken.php303 $body = Utils::streamFor(http_build_query(['token' => $token]));
/plugin/matrixnotifierwas/vendor/guzzlehttp/guzzle/src/
DClient.php396 $modify['body'] = Psr7\Utils::streamFor($options['body']);