X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FHttpClient.php;h=776adafcaff3d80f3ccb6b7eb9de3fef212566f5;hb=e71360126e438a313d4ab86524a462e01e0efdfa;hp=5840e36ecdeddbe8a5e68242d2a54c2198432843;hpb=24704c73fe5f5ee2ca19a9fc98101841ee7c854a;p=civicrm-core.git diff --git a/CRM/Utils/HttpClient.php b/CRM/Utils/HttpClient.php index 5840e36ecd..776adafcaf 100644 --- a/CRM/Utils/HttpClient.php +++ b/CRM/Utils/HttpClient.php @@ -48,7 +48,7 @@ class CRM_Utils_HttpClient { protected static $singleton; /** - * @var int|NULL + * @var int|null * seconds; or NULL to use system default */ protected $connectionTimeout; @@ -125,26 +125,26 @@ class CRM_Utils_HttpClient { ts('As a result, actions like retrieving the CiviCRM news feed will fail. Talk to your server administrator or hosting company to rectify this.'), ts('Curl is not installed') ); - return array(self::STATUS_DL_ERROR, NULL); + return [self::STATUS_DL_ERROR, NULL]; } list($ch, $caConfig) = $this->createCurl($remoteFile); if (preg_match('/^https:/', $remoteFile) && !$caConfig->isEnableSSL()) { // CRM_Core_Error::fatal('Cannot install this extension - does not support SSL'); - return array(self::STATUS_DL_ERROR, NULL); + return [self::STATUS_DL_ERROR, NULL]; } curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $data = curl_exec($ch); if (curl_errno($ch)) { - return array(self::STATUS_DL_ERROR, $data); + return [self::STATUS_DL_ERROR, $data]; } else { curl_close($ch); } - return array(self::STATUS_OK, $data); + return [self::STATUS_OK, $data]; } /** @@ -161,14 +161,14 @@ class CRM_Utils_HttpClient { // Download extension zip file ... if (!function_exists('curl_init')) { //CRM_Core_Error::fatal('Cannot install this extension - curl is not installed!'); - return array(self::STATUS_DL_ERROR, NULL); + return [self::STATUS_DL_ERROR, NULL]; } list($ch, $caConfig) = $this->createCurl($remoteFile); if (preg_match('/^https:/', $remoteFile) && !$caConfig->isEnableSSL()) { // CRM_Core_Error::fatal('Cannot install this extension - does not support SSL'); - return array(self::STATUS_DL_ERROR, NULL); + return [self::STATUS_DL_ERROR, NULL]; } curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); @@ -177,13 +177,13 @@ class CRM_Utils_HttpClient { curl_setopt($ch, CURLOPT_POSTFIELDS, $params); $data = curl_exec($ch); if (curl_errno($ch)) { - return array(self::STATUS_DL_ERROR, $data); + return [self::STATUS_DL_ERROR, $data]; } else { curl_close($ch); } - return array(self::STATUS_OK, $data); + return [self::STATUS_OK, $data]; } /** @@ -192,9 +192,9 @@ class CRM_Utils_HttpClient { * (0 => resource, 1 => CA_Config_Curl) */ protected function createCurl($remoteFile) { - $caConfig = CA_Config_Curl::probe(array( + $caConfig = CA_Config_Curl::probe([ 'verify_peer' => (bool) Civi::settings()->get('verifySSL'), - )); + ]); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $remoteFile); @@ -211,7 +211,7 @@ class CRM_Utils_HttpClient { curl_setopt_array($ch, $caConfig->toCurlOptions()); } - return array($ch, $caConfig); + return [$ch, $caConfig]; } /**