Phly\Http\PhpInputStream::__toString PHP Method

__toString() public method

public __toString ( )
    public function __toString()
    {
        if ($this->reachedEof) {
            return $this->cache;
        }
        $this->getContents();
        return $this->cache;
    }