X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FUtils%2FVerp.php;h=a9d5140c3cdd7f0c216c144f801377d845137cfe;hb=39a2630f0e7a413bb744b1b52a9f999f04780c9a;hp=87600a04ef63b3661f9b0bed9a898f892c6c504e;hpb=be2fb01f90f5f299dd07402a41fed7c7c7567f00;p=civicrm-core.git diff --git a/CRM/Utils/Verp.php b/CRM/Utils/Verp.php index 87600a04ef..a9d5140c3c 100644 --- a/CRM/Utils/Verp.php +++ b/CRM/Utils/Verp.php @@ -33,9 +33,11 @@ * @copyright CiviCRM LLC (c) 2004-2019 */ class CRM_Utils_Verp { - /* Mapping of reserved characters to hex codes */ - - static $encodeMap = [ + /** + * Mapping of reserved characters to hex codes + * @var array + */ + public static $encodeMap = [ '+' => '2B', '@' => '40', ':' => '3A', @@ -46,9 +48,11 @@ class CRM_Utils_Verp { ']' => '5D', ]; - /* Mapping of hex codes to reserved characters */ - - static $decodeMap = [ + /** + * Mapping of hex codes to reserved characters + * @var array + */ + public static $decodeMap = [ '40' => '@', '3A' => ':', '25' => '%',