public function Header::setGlue

Change the glue used to implode the values

Parameters

string $glue Glue used to implode multiple values:

Return value

Header

File

drupal/core/vendor/guzzle/http/Guzzle/Http/Message/Header.php, line 102

Class

Header
Represents a header and all of the values stored by that header

Namespace

Guzzle\Http\Message

Code

public function setGlue($glue) {
  $this->glue = $glue;
  $this->stringCache = null;
  return $this;
}