Lines Matching refs:streams
17 private $streams = []; variable in GuzzleHttp\\Psr7\\AppendStream
29 * @param StreamInterface[] $streams Streams to decorate. Each stream must
32 public function __construct(array $streams = []) argument
34 foreach ($streams as $stream) {
73 $this->streams[] = $stream;
89 foreach ($this->streams as $stream) {
93 $this->streams = [];
106 foreach ($this->streams as $stream) {
110 $this->streams = [];
130 foreach ($this->streams as $stream) {
143 return !$this->streams
144 || ($this->current >= count($this->streams) - 1
145 && $this->streams[$this->current]->eof());
167 foreach ($this->streams as $i => $stream) {
191 $total = count($this->streams) - 1;
197 if ($progressToNext || $this->streams[$this->current]->eof()) {
205 $result = $this->streams[$this->current]->read($remaining);