mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 19:02:41 +01:00
22 lines
406 B
PHP
22 lines
406 B
PHP
|
<?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();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|