Correct Aphlict websocket URI construction after PHP8 compatibility changes
[phabricator.git] / src / applications / phortune / xaction / PhortuneAccountEmailStatusTransaction.php
blobe607db2f99757f03b07ba7ec3a1c31cd40f8fc53
1 <?php
3 final class PhortuneAccountEmailStatusTransaction
4 extends PhortuneAccountEmailTransactionType {
6 const TRANSACTIONTYPE = 'status';
8 public function generateOldValue($object) {
9 return $object->getStatus();
12 public function applyInternalEffects($object, $value) {
13 $object->setStatus($value);
16 public function getTitle() {
17 return pht(
18 '%s changed the status for this address to %s.',
19 $this->renderAuthor(),
20 $this->renderNewValue());