Ergo\Http\HeaderField::__toString PHP Method

__toString() public method

The full header string, e.g. 'Example-Header: Some Value'
public __toString ( ) : string
return string
    public function __toString()
    {
        return sprintf('%s: %s%s', $this->getName(), $this->getValue(), self::CRLF);
    }