Google\Cloud\Tests\Speech\HttpStreamWrapper::stream_read PHP Method

stream_read() public method

public stream_read ( $count )
    public function stream_read($count)
    {
        $this->position += strlen($this->bodyData);
        if ($this->position > strlen($this->bodyData)) {
            return false;
        }
        return $this->bodyData;
    }