1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-14 19:02:41 +01:00
phorge-phorge/src/applications/herald/storage/HeraldRuleTransaction.php

22 lines
406 B
PHP
Raw Normal View History

<?php
final class HeraldRuleTransaction
extends PhabricatorApplicationTransaction {
const TYPE_EDIT = 'herald:edit';
public function getApplicationName() {
return 'herald';
}
public function getApplicationTransactionType() {
return HeraldPHIDTypeRule::TYPECONST;
}
public function getApplicationTransactionCommentObject() {
return new HeraldRuleTransactionComment();
}
}