@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<?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}