@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 HeraldRuleTransaction
4 extends PhabricatorModularTransaction {
5
6 const TYPE_EDIT = 'herald:edit';
7
8 public function getApplicationName() {
9 return 'herald';
10 }
11
12 public function getApplicationTransactionType() {
13 return HeraldRulePHIDType::TYPECONST;
14 }
15
16 public function getBaseTransactionClass() {
17 return HeraldRuleTransactionType::class;
18 }
19
20}