public function Response::getServer

Get the Server HTTP header

Return value

string|null A name for the server

File

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

Class

Response
Guzzle HTTP response object

Namespace

Guzzle\Http\Message

Code

public function getServer() {
  return $this
    ->getHeader('Server', true);
}