X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FHttp.php;h=595a9c06079afbce4572e8f55afb08336e85e671;hb=cf726992aa4ce457eb4fba768b075085167ad7cb;hp=d5400a09233326e6e5f28cb5db4f9fdf32da8858;hpb=a866838c9b5e04dc08caf43c26ebbbec16243059;p=civicrm-core.git diff --git a/CRM/Utils/Http.php b/CRM/Utils/Http.php index d5400a0923..595a9c0607 100644 --- a/CRM/Utils/Http.php +++ b/CRM/Utils/Http.php @@ -3,7 +3,7 @@ +--------------------------------------------------------------------+ | CiviCRM version 5 | +--------------------------------------------------------------------+ - | Copyright CiviCRM LLC (c) 2004-2018 | + | Copyright CiviCRM LLC (c) 2004-2019 | +--------------------------------------------------------------------+ | This file is a part of CiviCRM. | | | @@ -28,7 +28,7 @@ /** * * @package CiviCRM_Hook - * @copyright CiviCRM LLC (c) 2004-2018 + * @copyright CiviCRM LLC (c) 2004-2019 */ class CRM_Utils_Http { @@ -61,7 +61,7 @@ class CRM_Utils_Http { * Ex: Array("max-age"=>86400, "public"=>1). */ public static function parseCacheControl($value) { - $result = array(); + $result = []; $parts = preg_split('/, */', $value); foreach ($parts as $part) {