Oara\Network\Publisher\AvantLink::makeCall PHP Method

makeCall() private method

private makeCall ( $strUrl ) : mixed
$strUrl
return mixed
    private function makeCall($strUrl)
    {
        $ch = \curl_init();
        \curl_setopt($ch, CURLOPT_URL, $strUrl);
        \curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
        $returnResult = \curl_exec($ch);
        \curl_close($ch);
        return $returnResult;
    }