public function CurlHandle::getHandle

Get the wrapped curl handle

Return value

resource|null Returns the cURL handle or null if it was closed

File

drupal/core/vendor/guzzle/http/Guzzle/Http/Curl/CurlHandle.php, line 379

Class

CurlHandle
Immutable wrapper for a cURL handle

Namespace

Guzzle\Http\Curl

Code

public function getHandle() {
  return $this
    ->isAvailable() ? $this->handle : null;
}