This commit is contained in:
Christopher 2020-10-23 12:26:30 +02:00
parent a55a02095b
commit 2e515ee7a5
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
curl_setopt($this->CurlClient, CURLOPT_URL, "http:/v1.24/containers/json");
$jsonRAWData = curl_exec($this->CurlClient);
print_r($jsonRAWData);
curl_close($this->CurlClient);
return json_decode($jsonRAWData, TRUE);
}