Lines Matching refs:streams
14 private $streams = []; variable in GuzzleHttp\\Stream\\AppendStream
22 * @param StreamInterface[] $streams Streams to decorate. Each stream must
25 public function __construct(array $streams = []) argument
27 foreach ($streams as $stream) {
60 $this->streams[] = $stream;
77 foreach ($this->streams as $stream) {
81 $this->streams = [];
117 foreach ($this->streams as $stream) {
130 return !$this->streams ||
131 ($this->current >= count($this->streams) - 1 &&
132 $this->streams[$this->current]->eof());
150 foreach ($this->streams as $stream) {
176 $total = count($this->streams) - 1;
181 if ($this->streams[$this->current]->eof()) {
187 $buffer .= $this->streams[$this->current]->read($remaining);