public function CurlException::setCurlHandle

Set the associated curl handle

Parameters

CurlHandle $handle Curl handle:

Return value

self

File

drupal/core/vendor/guzzle/http/Guzzle/Http/Exception/CurlException.php, line 40

Class

CurlException
cURL request exception

Namespace

Guzzle\Http\Exception

Code

public function setCurlHandle(CurlHandle $handle) {
  $this->handle = $handle;
  return $this;
}