@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at upstream/main 17 lines 384 B view raw
1<?php 2 3final class NuanceQueueTransaction extends NuanceTransaction { 4 5 public function getApplicationTransactionType() { 6 return NuanceQueuePHIDType::TYPECONST; 7 } 8 9 public function getApplicationTransactionCommentObject() { 10 return new NuanceQueueTransactionComment(); 11 } 12 13 public function getBaseTransactionClass() { 14 return NuanceQueueTransactionType::class; 15 } 16 17}