Zend\Diactoros\Stream::__toString PHP Method

__toString() public method

public __toString ( )
    public function __toString()
    {
        if (!$this->isReadable()) {
            return '';
        }
        try {
            $this->rewind();
            return $this->getContents();
        } catch (RuntimeException $e) {
            return '';
        }
    }