Merge pull request #15816 from MiyaNoctem/dev-core-1383-fix-reinstallation-of-extensi...
[civicrm-core.git] / CRM / Utils / Verp.php
index 87600a04ef63b3661f9b0bed9a898f892c6c504e..a9d5140c3cdd7f0c216c144f801377d845137cfe 100644 (file)
  * @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' => '%',