in src/Client/Curl.php [113:123]
private function getCurl(): CurlHandle
{
if (empty($this->curl)) {
$init = curl_init();
if (false === $init) {
throw new CurlException("I cannot execute curl initialization");
}
$this->curl = $init;
}
return $this->curl;
}