Merge pull request #14101 from civicrm/5.13
[civicrm-core.git] / CRM / Core / Action.php
index 4e5e811ea52b366290d146d41b4469c4426845e7..638976ea32831afba220f0b4e638c8bead94f141 100644 (file)
@@ -74,10 +74,10 @@ class CRM_Core_Action {
    * bit manipulation operations so we can perform multiple
    * actions on the same object if needed
    *
-   * @var array $_names type of variable name to action constant
+   * @var array
    *
    */
-  static $_names = [
+  public static $_names = [
     'add' => self::ADD,
     'update' => self::UPDATE,
     'view' => self::VIEW,
@@ -102,7 +102,7 @@ class CRM_Core_Action {
    *
    * @var array
    */
-  static $_description;
+  public static $_description;
 
   /**
    * Called by the request object to translate a string into a mask.