24 return $this->stream->__toString();
30 public function close()
32 $this->stream->close();
40 return $this->stream->detach();
48 return $this->stream->getSize();
54 public function tell()
56 return $this->stream->tell();
64 return $this->stream->eof();
72 return $this->stream->isSeekable();
78 public function seek($offset, $whence = SEEK_SET)
80 $this->stream->seek($offset, $whence);
88 $this->stream->rewind();
96 return $this->stream->isWritable();
102 public function write($string)
104 return $this->stream->write($string);
112 return $this->stream->isReadable();
118 public function read($length)
120 return $this->stream->read($length);
128 return $this->stream->getContents();
136 return $this->stream->getMetadata($key);