summaryrefslogtreecommitdiffstats
path: root/library/Director/Core/RestApiClient.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/Director/Core/RestApiClient.php')
-rw-r--r--library/Director/Core/RestApiClient.php14
1 files changed, 6 insertions, 8 deletions
diff --git a/library/Director/Core/RestApiClient.php b/library/Director/Core/RestApiClient.php
index b0854ff..19f6b68 100644
--- a/library/Director/Core/RestApiClient.php
+++ b/library/Director/Core/RestApiClient.php
@@ -206,14 +206,14 @@ class RestApiClient
}
/**
- * @return resource
+ * @throws RuntimeException
*/
protected function curl()
{
if ($this->curl === null) {
$this->curl = curl_init(sprintf('https://%s:%d', $this->peer, $this->port));
if (! $this->curl) {
- throw new RuntimeException('CURL INIT ERROR: ' . curl_error($this->curl));
+ throw new RuntimeException('CURL INIT FAILED');
}
}
@@ -260,13 +260,11 @@ class RestApiClient
public function disconnect()
{
- if ($this->curl !== null) {
- if (is_resource($this->curl)) {
- @curl_close($this->curl);
- }
-
- $this->curl = null;
+ if ($this->curl) {
+ @curl_close($this->curl);
}
+
+ $this->curl = null;
}
public function __destruct()