public function Response::getPragma

Get the Pragma HTTP header

Return value

Header|null Returns the implementation-specific headers that may have various effects anywhere along the request-response chain.

File

drupal/core/vendor/guzzle/http/Guzzle/Http/Message/Response.php, line 600

Class

Response
Guzzle HTTP response object

Namespace

Guzzle\Http\Message

Code

public function getPragma() {
  return $this
    ->getHeader('Pragma');
}