Overrides StreamInterface::getContents
public function getContents() : string { $result = ''; while (!$this->eof()) { $result .= $this->read(1000000); } return $result; }