public function getActions($rule_type)
 {
     switch ($rule_type) {
         case HeraldRuleTypeConfig::RULE_TYPE_GLOBAL:
             return array_merge(array(self::ACTION_BLOCK, self::ACTION_NOTHING), parent::getActions($rule_type));
     }
 }
 public function getActions($rule_type)
 {
     switch ($rule_type) {
         case HeraldRuleTypeConfig::RULE_TYPE_GLOBAL:
             return array_merge(array(self::ACTION_ADD_CC, self::ACTION_REMOVE_CC, self::ACTION_EMAIL, self::ACTION_ADD_REVIEWERS, self::ACTION_ADD_BLOCKING_REVIEWERS, self::ACTION_APPLY_BUILD_PLANS, self::ACTION_REQUIRE_SIGNATURE, self::ACTION_NOTHING), parent::getActions($rule_type));
         case HeraldRuleTypeConfig::RULE_TYPE_PERSONAL:
             return array_merge(array(self::ACTION_ADD_CC, self::ACTION_REMOVE_CC, self::ACTION_EMAIL, self::ACTION_FLAG, self::ACTION_ADD_REVIEWERS, self::ACTION_ADD_BLOCKING_REVIEWERS, self::ACTION_NOTHING), parent::getActions($rule_type));
     }
 }