Correct a parameter order swap in "diffusion.historyquery" for Mercurial
[phabricator.git] / src / applications / nuance / xaction / NuanceItemQueueTransaction.php
blob8ccbdb77971fb16dcdb7af5790f9aa13ce8e3db2
1 <?php
3 final class NuanceItemQueueTransaction
4 extends NuanceItemTransactionType {
6 const TRANSACTIONTYPE = 'nuance.item.queue';
8 public function generateOldValue($object) {
9 return $object->getQueuePHID();
12 public function applyInternalEffects($object, $value) {
13 $object->setQueuePHID($value);
16 public function getTitle() {
17 return pht(
18 '%s rerouted this item from %s to %s.',
19 $this->renderAuthor(),
20 $this->renderHandle($this->getOldValue()),
21 $this->renderHandle($this->getNewValue()));