public function getActionStrength()
 {
     $old = $this->getOldValue();
     $new = $this->getNewValue();
     switch ($this->getTransactionType()) {
         case self::TYPE_TITLE:
             if ($old === null) {
                 return 3;
             }
             break;
         case self::TYPE_ANSWERS:
             return 2;
     }
     return parent::getActionStrength();
 }
 public function getActionStrength()
 {
     switch ($this->getTransactionType()) {
         case self::TYPE_TITLE:
             return 1.4;
         case self::TYPE_STATUS:
             return 1.3;
         case self::TYPE_OWNER:
             return 1.2;
         case self::TYPE_PRIORITY:
             return 1.1;
     }
     return parent::getActionStrength();
 }
 public function getActionStrength()
 {
     switch ($this->getTransactionType()) {
         case self::TYPE_TITLE:
             return 1.4;
         case self::TYPE_CONTENT:
             return 1.3;
         case self::TYPE_DELETE:
             return 1.5;
         case self::TYPE_MOVE_TO:
         case self::TYPE_MOVE_AWAY:
             return 1.0;
     }
     return parent::getActionStrength();
 }
 public function getActionStrength()
 {
     switch ($this->getTransactionType()) {
         case self::TYPE_ACTION:
             return 3;
         case self::TYPE_UPDATE:
             return 2;
     }
     return parent::getActionStrength();
 }
 public function getActionStrength()
 {
     switch ($this->getTransactionType()) {
         case PhabricatorMacroTransactionType::TYPE_DISABLED:
             return 2.0;
         case PhabricatorMacroTransactionType::TYPE_FILE:
             return 1.5;
     }
     return parent::getActionStrength();
 }
 public function getActionStrength()
 {
     return parent::getActionStrength();
 }